- commit
- c472fbe11160002508fdd25b38846dea42bb65d7
- parent
- a91ca6a57523b2a0592bc6ab0d0f8639b436d9a2
- Author
- Tobias Bengfort <tobias.bengfort@gmx.net>
- Date
- 2015-03-22 16:29
add setup.py
Diffstat
| A | README.rst | 0 | |
| A | setup.py | 35 | +++++++++++++++++++++++++++++++++++ |
2 files changed, 35 insertions, 0 deletions
diff --git a/README.rst b/README.rst
diff --git a/setup.py b/setup.py
@@ -0,0 +1,35 @@
-1 1 from setuptools import setup
-1 2
-1 3
-1 4 setup(
-1 5 name='project-stats',
-1 6 version='0.0.0',
-1 7 description='keep track of all your projects',
-1 8 long_description=open('README.rst').read(),
-1 9 url='https://github.com/xi/project-stats',
-1 10 author='Tobias Bengfort',
-1 11 author_email='tobias.bengfort@posteo.de',
-1 12 py_modules=['project_stats'],
-1 13 install_requires=[
-1 14 'python-dateutil',
-1 15 'filecachetools',
-1 16 'requests',
-1 17 'pyyaml',
-1 18 ],
-1 19 extras_require={
-1 20 'cheesecake': ['cheesecake'],
-1 21 },
-1 22 entry_points={'console_scripts': [
-1 23 'project-stats=project_stats:main',
-1 24 ]},
-1 25 license='GPLv2+',
-1 26 classifiers=[
-1 27 'Development Status :: 4 - Beta',
-1 28 'Environment :: Console',
-1 29 'Intended Audience :: Developers',
-1 30 'Operating System :: OS Independent',
-1 31 'Programming Language :: Python',
-1 32 'License :: OSI Approved :: GNU General Public License v2 or later '
-1 33 '(GPLv2+)',
-1 34 'Topic :: Utilities',
-1 35 ])