-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
40 lines (36 loc) · 1.15 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
from setuptools import setup
def readme():
with open('README.rst', 'r') as f:
content = f.read()
return content
setup(name='autotask',
version='0.6',
description='A django-application for handling asynchronous tasks.',
long_description=readme(),
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
keywords='django task job queue',
url='https://github.com/kbr/autotask',
author='Klaus Bremer',
author_email='[email protected]',
license='MIT',
packages=[
'autotask',
'autotask/management',
'autotask/management/commands',
'autotask/migrations',
'autotask/test',
],
zip_safe=False
)