-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (25 loc) · 968 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
import os
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup, find_packages
#README = open('README.md').read()
#LICENSE = open('LICENSE.md').read()
setup(
name="django_taskd",
version="0.0.1a1",
url="https://github.com/asabine/django-taskd",
author="amelia sabine",
author_email="amelia.sabine@getpizza.cat",
#license=LICENSE,
zip_safe=False,
packages=find_packages(exclude=['tests', 'test_utils']),
description="""A taskd implementation for the Django web framework. Enables django applications to easily integrate
tasks with Taskwarrior.""",
#long_description=README,
install_requires=["django", "taskc", "requests"],
classifiers=["Framework :: Django",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.5",
]
)