-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (22 loc) · 890 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
from setuptools import setup, find_packages
long_desc = 'Task Tool is a bottle app which implements an extended TODO list.'
long_desc += 'It logs the time spent on each task and generates'
long_desc += 'graphs with statistics.'
setup(
name = 'task_tool',
version = '1.0.0.dev1',
description = 'Extended TODO list with statistics',
long_description = long_desc,
license = 'GNU General Public License v2 (GPLv2)',
author = 'Julen Larrucea',
author_email = '[email protected]',
url = 'https://github.com/julenl/task_tool',
download_url = 'https://github.com/julenl/task_tool/archive/0.1.tar.gz',
keywords = ['config', 'ini', 'raw', 'parser', 'non-interactive'],
classifiers = [
"Operating System :: POSIX",
"Programming Language :: Python",
"Programming Language :: Python :: 2"
],
packages = find_packages()
)