-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
60 lines (56 loc) · 1.74 KB
/
setup.py
File metadata and controls
60 lines (56 loc) · 1.74 KB
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
from setuptools import setup, find_packages
from itertools import chain
install_requires = [
"cloud-dataplug @ git+https://github.com/CLOUDLAB-URV/dataplug",
"lithops==3.4.1",
"boto3",
"cloudpickle",
"overrides",
"deap",
"scipy",
"numpy",
"pandas",
"black",
]
extras_require = {
"examples": [
"S3path",
],
"drawing": [
"matplotlib",
"networkx",
],
"kubernetes": [
"lithops[kubernetes]",
],
}
extras_require["all"] = list(set(chain.from_iterable(extras_require.values())))
setup(
name="flexecutor",
version="0.1.0",
author="Daniel Barcelona, Ayman Bourramouss, Enrique Molina, Stepan Klymonchuk (DAGium donation)",
author_email="daniel.barcelona@urv.cat, ayman.bourramouss@urv.cat, enrique.molina@urv.cat, "
"stepan.klymonchuk@urv.cat",
description="A flexible and DAG-optimized executor over Lithops",
url="https://github.com/CLOUDLAB-URV/flexecutor",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
license="Apache 2.0",
license_files=["LICENSE"],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering",
"Topic :: System :: Distributed Computing",
],
python_requires=">=3.10",
install_requires=install_requires,
extras_require=extras_require,
packages=find_packages(),
package_dir={"": "."},
)