├── AUTHORS ├── LICENSE ├── README.md ├── com.github.mirkobrombin.football ├── data ├── com.github.mirkobrombin.football.appdata.xml ├── com.github.mirkobrombin.football.desktop └── com.github.mirkobrombin.football.svg ├── debian ├── changelog ├── com.github.mirkobrombin.football │ └── usr │ │ └── share │ │ └── metainfo │ │ └── com.github.mirkobrombin.football.appdata.xml ├── compat ├── control ├── copyright ├── files └── rules ├── football ├── __init__.py ├── main.py └── style.css ├── screenshot.png └── setup.py /AUTHORS: -------------------------------------------------------------------------------- 1 | Mirko Brombin 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirkobrombin/Football/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirkobrombin/Football/HEAD/README.md -------------------------------------------------------------------------------- /com.github.mirkobrombin.football: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirkobrombin/Football/HEAD/com.github.mirkobrombin.football -------------------------------------------------------------------------------- /data/com.github.mirkobrombin.football.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirkobrombin/Football/HEAD/data/com.github.mirkobrombin.football.appdata.xml -------------------------------------------------------------------------------- /data/com.github.mirkobrombin.football.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirkobrombin/Football/HEAD/data/com.github.mirkobrombin.football.desktop -------------------------------------------------------------------------------- /data/com.github.mirkobrombin.football.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirkobrombin/Football/HEAD/data/com.github.mirkobrombin.football.svg -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirkobrombin/Football/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/com.github.mirkobrombin.football/usr/share/metainfo/com.github.mirkobrombin.football.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirkobrombin/Football/HEAD/debian/com.github.mirkobrombin.football/usr/share/metainfo/com.github.mirkobrombin.football.appdata.xml -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirkobrombin/Football/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirkobrombin/Football/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirkobrombin/Football/HEAD/debian/files -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirkobrombin/Football/HEAD/debian/rules -------------------------------------------------------------------------------- /football/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /football/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirkobrombin/Football/HEAD/football/main.py -------------------------------------------------------------------------------- /football/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirkobrombin/Football/HEAD/football/style.css -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirkobrombin/Football/HEAD/screenshot.png -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirkobrombin/Football/HEAD/setup.py --------------------------------------------------------------------------------