├── .gitignore ├── AUTHORS.rst ├── HISTORY.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── first.py ├── setup.cfg ├── setup.py ├── test_first.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hynek/first/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hynek/first/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /HISTORY.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hynek/first/HEAD/HISTORY.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hynek/first/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include *.rst LICENSE test_first.py tox.ini Makefile 2 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hynek/first/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hynek/first/HEAD/README.rst -------------------------------------------------------------------------------- /first.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hynek/first/HEAD/first.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | # we're pure-python 3 | universal = 1 4 | 5 | [metadata] 6 | license_file = LICENSE 7 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hynek/first/HEAD/setup.py -------------------------------------------------------------------------------- /test_first.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hynek/first/HEAD/test_first.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hynek/first/HEAD/tox.ini --------------------------------------------------------------------------------