-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
22 lines (20 loc) · 947 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
#! /usr/bin/env python
from setuptools import setup
setup(name="redshirt",
version="0.3.0b1",
scripts=['redshirt.py'],
author="Jack Laxson",
author_email="[email protected]",
description="A HTTP management api for taskwarrior's taskd",
keywords=["taskd", "taskwarrior", "api", "management"],
license="GPL v3",
zip_safe=False,
install_requires=["bottle", "click", "psutil", "packaging", "requests", "attrs", "influxdb"],
url="https://github.com/jrabbit/taskd-redshirt",
classifiers=["Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
"Topic :: System :: Monitoring",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
])