forked from gdrius/hamster-export
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
24 lines (23 loc) · 760 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from distutils.core import setup
setup(
name='hamster-export',
version='0.1',
url='http://github.com/gdrius/hamster-export/',
license='MIT',
author='Giedrius Slavinskas',
author_email='[email protected]',
description='A command line tool to export logged time from Hamster '
'time-tracking application',
scripts=['hamster-export'],
platforms='any',
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Time tracking :: Communications',
],
)