forked from closeio/tasktiger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (32 loc) · 1.22 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
from setuptools import setup
with open("README.rst", encoding="utf-8") as file:
long_description = file.read()
install_requires = ["click", "redis>=3.3.0,<5", "structlog"]
tests_require = install_requires + ["freezefrog", "pytest", "psutil"]
setup(
name="tasktiger",
version="0.18.2",
url="http://github.com/closeio/tasktiger",
license="MIT",
description="Python task queue",
long_description=long_description,
test_suite="tests",
tests_require=tests_require,
install_requires=install_requires,
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX",
"Operating System :: POSIX :: Linux",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
packages=["tasktiger"],
package_data={"tasktiger": ["lua/*.lua"]},
entry_points={"console_scripts": ["tasktiger = tasktiger:run_worker"]},
)