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