1 | import os
|
---|
2 | import setuptools
|
---|
3 | from distutils.core import setup
|
---|
4 |
|
---|
5 | requires = ['pygal']
|
---|
6 |
|
---|
7 | setup(
|
---|
8 | name='stamper',
|
---|
9 | version='0.1',
|
---|
10 | author='Francisco de Borja Lopez Rio',
|
---|
11 | author_email='borja@codigo23.net',
|
---|
12 | packages=['stamper'],
|
---|
13 | url='https://bitbucket.org/codigo23/stamper',
|
---|
14 | download_url='http://pypi.python.org/pypi/stamper#downloads',
|
---|
15 | license='BSD licence, see LICENSE',
|
---|
16 | description='Time tracking tool',
|
---|
17 | long_description=open('README').read(),
|
---|
18 | scripts=['bin/stamp', 'bin/stamps', 'bin/stamp2json', 'bin/time_sum'],
|
---|
19 | install_requires=requires,
|
---|
20 | classifiers=[
|
---|
21 | 'Development Status :: 4 - Beta',
|
---|
22 | 'Environment :: Console',
|
---|
23 | 'Intended Audience :: End Users/Desktop',
|
---|
24 | 'License :: OSI Approved :: BSD License',
|
---|
25 | 'Natural Language :: English',
|
---|
26 | 'Operating System :: OS Independent',
|
---|
27 | 'Programming Language :: Python :: 2',
|
---|
28 | 'Programming Language :: Python :: 3',
|
---|
29 | 'Topic :: Office/Business',
|
---|
30 | 'Topic :: Office/Business :: Scheduling',
|
---|
31 | 'Topic :: Utilities',
|
---|
32 | ]
|
---|
33 | )
|
---|