forked from coddingtonbear/timebook
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 759 Bytes
/
setup.py
File metadata and controls
25 lines (23 loc) · 759 Bytes
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
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='me@adamcoddington.net',
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<2.0',
]
)