forked from lithops-cloud/lithops
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
105 lines (98 loc) · 2.56 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
#!/usr/bin/env python
from setuptools import setup, find_packages
from itertools import chain
install_requires = [
'Click',
'tabulate',
'pandas',
'PyYAML',
'python-dateutil',
'pika',
'tqdm',
'lxml',
'tblib',
'docker',
'boto3',
'requests',
'seaborn',
'paramiko',
'matplotlib',
'kubernetes',
'ibm-cos-sdk',
'ibm-code-engine-sdk',
'redis',
'ibm-vpc',
'cloudpickle',
'tblib',
'ps-mem',
'psutil'
]
extras_require = {
'gcp': [
'httplib2',
'google-cloud-storage',
'google-cloud-pubsub',
'google-api-python-client',
'google-auth'
],
'aliyun': [
'aliyun-fc2',
'oss2'
],
'azure': [
'azure-mgmt-resource',
'azure-mgmt-compute',
'azure-mgmt-network',
'azure-identity',
'azure-storage-blob',
'azure-storage-queue'
],
'multiprocessing': [
'pynng'
],
'joblib': [
'joblib',
'diskcache',
'numpy'
],
'oracle': [
'oci',
]
}
extras_require["all"] = list(set(chain.from_iterable(extras_require.values())))
# how to get version info into the project
exec(open('lithopserve/version.py').read())
setup(
name='lithopserve',
version=__version__,
url='https://github.com/ZikBurns/lithopserve',
author='Gil Vernik, Josep Sampe',
description='Lithops lets you transparently run your Python applications in the Cloud',
author_email='[email protected], [email protected]',
packages=find_packages(),
install_requires=install_requires,
extras_require=extras_require,
include_package_data=True,
entry_points='''
[console_scripts]
lithopserve=lithopserve.scripts.cli:lithops_cli
''',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Natural Language :: English',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Scientific/Engineering',
'Topic :: System :: Distributed Computing',
],
python_requires='>=3.6',
)