source: stamper/setup.py

Last change on this file was 72:092388782a7e, checked in by Borja Lopez <borja@…>, 5 years ago

Updated setup.py to reflect project new website
Bumped version to 0.1.1
Removed python2 from the classifiers (not supported anymore)

File size: 1.0 KB
RevLine 
[0]1import os
[72]2
3from setuptools import setup
[0]4
[72]5version = '0.1.1'
6
7requires = [
8 'pygal'
9]
[0]10
11setup(
12 name='stamper',
[72]13 version=version,
[0]14 author='Francisco de Borja Lopez Rio',
15 author_email='borja@codigo23.net',
16 packages=['stamper'],
[72]17 url='https://code.codigo23.net/trac/wiki/stamper',
[0]18 download_url='http://pypi.python.org/pypi/stamper#downloads',
19 license='BSD licence, see LICENSE',
20 description='Time tracking tool',
[72]21 long_description=open('README.rst').read(),
[13]22 scripts=['bin/stamp', 'bin/stamps', 'bin/stamp2json', 'bin/time_sum'],
[46]23 install_requires=requires,
[0]24 classifiers=[
[46]25 'Development Status :: 4 - Beta',
[0]26 'Environment :: Console',
27 'Intended Audience :: End Users/Desktop',
28 'License :: OSI Approved :: BSD License',
29 'Natural Language :: English',
30 'Operating System :: OS Independent',
31 'Programming Language :: Python :: 3',
32 'Topic :: Office/Business',
33 'Topic :: Office/Business :: Scheduling',
34 'Topic :: Utilities',
35 ]
36)
Note: See TracBrowser for help on using the repository browser.