forked from coddingtonbear/timebook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (30 loc) · 881 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
25
26
27
28
29
30
31
32
33
import multiprocessing
from setuptools import setup
from timebook import get_version
setup(
name='timebook',
version=get_version(),
url='http://bitbucket.org/latestrevision/timebook/',
description='track what you spend time on',
author='Trevor Caira, Adam Coddington',
author_email='[email protected]',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities',
],
packages=['timebook', 'timebook.migrations',],
entry_points={'console_scripts': [
't = timebook.cmdline:run_from_cmdline']},
install_requires=[
'python-dateutil',
],
test_suite='nose.collector',
tests_require=[
'ddt>=0.4',
'mock',
'nose',
]
)