-
Notifications
You must be signed in to change notification settings - Fork 27
/
setup.py
41 lines (34 loc) · 876 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
29
30
31
32
33
34
35
36
37
38
39
40
41
import sys
from setuptools import setup
dev_requires = [
"black",
]
test_requires = [
"pytest >= 5.0, < 6.0",
]
extras = {
"dev": dev_requires + test_requires,
"test": test_requires,
}
if sys.version_info < (3, 6):
extras["dev"].remove("black")
extras["all_extras"] = sum(extras.values(), [])
setup(
name="faktory",
version="1.0.0",
description="Python worker for the Faktory project",
extras_require=extras,
python_requires=">=3.7.0",
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Topic :: System :: Distributed Computing",
],
keywords="faktory worker",
url="http://github.com/cdrx/faktory_python_worker",
author="Chris R",
license="BSD",
packages=["faktory"],
zip_safe=False,
)