-
Notifications
You must be signed in to change notification settings - Fork 120
Expand file tree
/
Copy pathsetup.py
More file actions
141 lines (133 loc) 路 3.07 KB
/
Copy pathsetup.py
File metadata and controls
141 lines (133 loc) 路 3.07 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
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
#!/usr/bin/env python
from setuptools import setup, find_packages
from itertools import chain
install_requires = [
'Click',
'tabulate',
'six',
'PyYAML',
'pika',
'tqdm',
'tblib',
'requests',
'paramiko',
'cloudpickle',
'ps-mem',
'psutil'
]
extras_require = {
'ibm': [
'ibm-cos-sdk',
'ibm-code-engine-sdk',
'ibm-vpc',
'kubernetes',
],
'aws': [
'boto3'
],
'gcp': [
'httplib2',
'google-cloud-storage',
'google-cloud-pubsub',
'google-api-python-client',
'google-auth'
],
'azure': [
'azure-mgmt-resource',
'azure-mgmt-compute',
'azure-mgmt-network',
'azure-identity',
'azure-storage-blob',
'azure-storage-queue'
],
'aliyun': [
'alibabacloud-fc20230330>=4.7.0',
'oss2',
],
'ceph': [
'boto3'
],
'knative': [
'kubernetes',
],
'kubernetes': [
'kubernetes',
],
'minio': [
'boto3'
],
'redis': [
'redis'
],
'multiprocessing': [
'redis',
'pynng'
],
'joblib': [
'joblib',
'diskcache',
'numpy',
'redis'
],
'plotting': [
'pandas',
'matplotlib',
'seaborn',
'numpy'
],
'oracle': [
'oci',
],
'tests': [
'pytest',
'kubernetes',
'pika',
'ibm-cos-sdk',
'ibm-cloud-sdk-core',
'joblib',
'diskcache',
'numpy',
'redis',
'pandas',
'matplotlib',
'seaborn',
'flask',
'gevent',
'scikit-learn',
]
}
extras_require["all"] = list(set(chain.from_iterable(extras_require.values())))
# how to get version info into the project
exec(open('lithops/version.py').read())
setup(
name='lithops',
version=__version__,
url='https://github.com/lithops-cloud/lithops',
author='Gil Vernik, Josep Sampe',
description='Lithops lets you transparently run your Python applications in the Cloud',
author_email='gilv@ibm.com, josep.sampe@gmail.com',
packages=find_packages(),
install_requires=install_requires,
extras_require=extras_require,
include_package_data=True,
entry_points='''
[console_scripts]
lithops=lithops.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.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: 3.14',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Scientific/Engineering',
'Topic :: System :: Distributed Computing',
],
python_requires='>=3.6',
)