source: stamper/setup.py@ 6:9b9f1d198564

Last change on this file since 6:9b9f1d198564 was 3:4eb41ee30ee9, checked in by Borja Lopez <borja@…>, 10 years ago

Renamed calc to stamps (better/proper name for that tool)

File size: 1.0 KB
Line 
1import os
2import setuptools
3from distutils.core import setup
4
5
6setup(
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'],
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)
Note: See TracBrowser for help on using the repository browser.