-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
executable file
·55 lines (52 loc) · 1.53 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
45
46
47
48
49
50
51
52
53
54
55
#!/usr/bin/env python
from setuptools import find_packages, setup
project = "microcosm-daemon"
version = "3.0.0"
setup(
name=project,
version=version,
description="Asynchronous workers",
author="Globality Engineering",
author_email="[email protected]",
url="https://github.com/globality-corp/microcosm-daemon",
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
include_package_data=True,
python_requires=">=3.6",
zip_safe=False,
install_requires=[
"microcosm>=4.0.0",
"microcosm-logging>=2.0.0",
],
setup_requires=[
],
dependency_links=[
],
entry_points={
"microcosm.factories": [
"error_policy = microcosm_daemon.error_policy:configure_error_policy",
"health_reporter = microcosm_daemon.health_reporter:configure_health_reporter",
"signal_handler = microcosm_daemon.signal_handler:configure_signal_handler",
"sleep_policy = microcosm_daemon.sleep_policy:configure_sleep_policy",
]
},
extras_require={
"test": [
"coverage>=3.7.1",
"parameterized>=0.8.1",
"PyHamcrest>=1.8.5",
"pytest-cov>=3.0.0",
"pytest>=6.2.5",
],
"healthcheck": [
"waitress>=3.0.0",
"Flask>=2",
"markupsafe>=2.1",
"requests>=2.27.1",
],
},
tests_require=[
"coverage>=3.7.1",
"parameterized>=0.8.1",
"PyHamcrest>=1.8.5",
],
)