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
Line 
1import os
2
3from setuptools import setup
4
5version = '0.1.1'
6
7requires = [
8 'pygal'
9]
10
11setup(
12 name='stamper',
13 version=version,
14 author='Francisco de Borja Lopez Rio',
15 author_email='borja@codigo23.net',
16 packages=['stamper'],
17 url='https://code.codigo23.net/trac/wiki/stamper',
18 download_url='http://pypi.python.org/pypi/stamper#downloads',
19 license='BSD licence, see LICENSE',
20 description='Time tracking tool',
21 long_description=open('README.rst').read(),
22 scripts=['bin/stamp', 'bin/stamps', 'bin/stamp2json', 'bin/time_sum'],
23 install_requires=requires,
24 classifiers=[
25 'Development Status :: 4 - Beta',
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.