-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 768 Bytes
/
setup.py
File metadata and controls
27 lines (25 loc) · 768 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
26
27
from setuptools import setup
from timebook import get_version
setup(
name='timebook',
version=get_version(),
url='https://github.com/imiric/timebook',
description='track what you spend time on',
author='Trevor Caira',
author_email='trevor@caira.com',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Utilities',
],
packages=['timebook'],
install_requires=[
'docopt==0.6.2',
],
entry_points={'console_scripts': [
't = timebook.cmdline:run_from_cmdline']},
)