-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
136 lines (134 loc) · 4.52 KB
/
setup.py
File metadata and controls
136 lines (134 loc) · 4.52 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
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="clustrix",
version="0.1.1",
author="Contextual Dynamics Laboratory",
author_email="contextualdynamics@gmail.com",
description="Seamless distributed computing for Python functions",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/ContextLab/clustrix",
packages=find_packages(),
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Distributed Computing",
],
python_requires=">=3.8",
install_requires=[
"paramiko>=2.7.0",
"pyyaml>=5.4.0",
"cloudpickle>=2.0.0",
"dill>=0.3.4",
"click>=8.0.0",
"requests>=2.25.0", # For Lambda Cloud and general HTTP requests
"huggingface_hub>=0.16.0", # For HuggingFace Spaces integration
],
extras_require={
"widget": [
"ipywidgets>=7.6.0",
"jupyter>=1.0",
"ipython>=7.0",
],
"kubernetes": ["kubernetes>=20.13.0"],
"aws": [
"boto3>=1.26.0",
"kubernetes>=20.13.0",
],
"azure": [
"azure-identity>=1.12.0",
"azure-mgmt-containerservice>=20.0.0",
"kubernetes>=20.13.0",
],
"gcp": [
"google-cloud-container>=2.15.0",
"google-auth>=2.15.0",
"kubernetes>=20.13.0",
],
"cloud": [
"boto3>=1.26.0",
"azure-identity>=1.12.0",
"azure-mgmt-containerservice>=20.0.0",
"google-cloud-container>=2.15.0",
"google-auth>=2.15.0",
"kubernetes>=20.13.0",
],
"dev": [
"pytest>=6.0",
"pytest-cov>=2.0",
"black>=21.0",
"flake8>=3.8",
"mypy>=0.812",
],
"test": [
"pytest>=6.0",
"pytest-cov>=2.0",
"coverage>=6.0",
"pytest-xdist>=2.0", # For parallel test execution
"pytest-mock>=3.0", # For better mocking support
# Cloud provider dependencies for comprehensive testing
"boto3>=1.26.0", # AWS
"azure-identity>=1.12.0", # Azure auth
"azure-mgmt-compute>=30.0.0", # Azure compute
"azure-mgmt-containerservice>=20.0.0", # Azure AKS
"azure-mgmt-resource>=23.0.0", # Azure resources
"azure-mgmt-network>=25.0.0", # Azure networking
"google-cloud-compute>=1.11.0", # GCP compute
"google-cloud-container>=2.15.0", # GCP GKE
"google-auth>=2.15.0", # GCP auth
"kubernetes>=20.13.0", # Kubernetes client
],
"docs": [
"sphinx>=4.0",
"sphinx-wagtail-theme>=6.0.0",
"sphinx-autodoc-typehints>=1.12",
"nbsphinx>=0.8",
"jupyter>=1.0",
"ipython>=7.0",
],
"all": [
# Widget dependencies
"ipywidgets>=7.6.0",
"jupyter>=1.0",
"ipython>=7.0",
# Cloud provider dependencies
"kubernetes>=20.13.0",
"boto3>=1.26.0",
"azure-identity>=1.12.0",
"azure-mgmt-containerservice>=20.0.0",
"google-cloud-container>=2.15.0",
"google-auth>=2.15.0",
# Development dependencies
"pytest>=6.0",
"pytest-cov>=2.0",
"black>=21.0",
"flake8>=3.8",
"mypy>=0.812",
# Documentation dependencies
"sphinx>=4.0",
"sphinx-wagtail-theme>=6.0.0",
"sphinx-autodoc-typehints>=1.12",
"nbsphinx>=0.8",
],
},
entry_points={
"console_scripts": [
"clustrix=clustrix.cli:cli",
],
},
include_package_data=True,
zip_safe=False,
)