forked from closeio/tasktiger-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (42 loc) · 1.32 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
41
42
43
44
# workaround for open() with encoding='' python2/3 compatibility
from io import open
from setuptools import setup
with open('README.rst', encoding='utf-8') as file:
long_description = file.read()
setup(
name='tasktiger-admin',
version='0.3.1',
url='http://github.com/closeio/tasktiger-admin',
license='MIT',
description='Admin for tasktiger, a Python task queue',
long_description=long_description,
platforms='any',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Framework :: Flask',
],
install_requires=[
'click',
'flask-admin',
'redis>=2,<4',
'structlog',
'tasktiger>=0.11',
],
packages=['tasktiger_admin'],
entry_points={
'console_scripts': [
'tasktiger-admin = tasktiger_admin.utils:run_admin'
]
},
include_package_data=True,
zip_safe=False,
)