This repository has been archived by the owner on Feb 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
60 lines (54 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
56
57
58
59
60
import os
from setuptools import find_packages, setup
REQUIRES = [
"flask==1.1.2",
"requests>=2.24.0,<3",
"jsonschema==3.2.0",
"parsl>=1.1.0a0",
"configobj==5.0.6",
"texttable>=1.6.4,<2",
"redis==3.5.3",
"funcx-common[redis,boto3]==0.0.11",
"funcx-endpoint==0.3.5",
"pyzmq==22.0.3",
"pika==1.2.0",
"python-json-logger==2.0.1",
]
DEV_REQUIRES = [
"flake8<4",
"pytest<7",
"pytest-cov<3",
"safety",
]
version_ns = {}
with open(os.path.join("funcx_forwarder", "version.py")) as f:
exec(f.read(), version_ns)
version = version_ns["VERSION"]
setup(
name="funcx_forwarder",
version=version,
packages=find_packages(),
description="funcX Forwarder: High Performance Function Serving for Science",
install_requires=REQUIRES,
python_requires=">=3.6",
extras_require={"dev": DEV_REQUIRES},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
],
keywords=["funcX", "FaaS", "Function Serving"],
entry_points={
"console_scripts": [
"forwarder-service=funcx_forwarder.service:cli",
]
},
author="funcX team",
author_email="[email protected]",
license="Apache License, Version 2.0",
url="https://github.com/funcx-faas/funcx",
)