source: stamper/setup.py@ 59:bc85231806ed

Last change on this file since 59:bc85231806ed was 46:04fe1bafaca7, checked in by Borja Lopez <borja@…>, 10 years ago

Version 0.1 (status beta), first one to be released to pypi
Added pygal as a dependency, so it gets installed when installing stamper.
Removed the classifier for daemons, as it does not apply for stamper.

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