datacrunch 1.8.1__tar.gz → 1.8.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {datacrunch-1.8.1 → datacrunch-1.8.3}/PKG-INFO +13 -35
- {datacrunch-1.8.1 → datacrunch-1.8.3}/README.md +8 -30
- datacrunch-1.8.3/datacrunch/__version__.py +1 -0
- {datacrunch-1.8.1 → datacrunch-1.8.3}/datacrunch.egg-info/PKG-INFO +13 -35
- {datacrunch-1.8.1 → datacrunch-1.8.3}/datacrunch.egg-info/requires.txt +1 -0
- {datacrunch-1.8.1 → datacrunch-1.8.3}/setup.py +7 -5
- datacrunch-1.8.1/datacrunch/__version__.py +0 -1
- {datacrunch-1.8.1 → datacrunch-1.8.3}/LICENSE +0 -0
- {datacrunch-1.8.1 → datacrunch-1.8.3}/datacrunch/__init__.py +0 -0
- {datacrunch-1.8.1 → datacrunch-1.8.3}/datacrunch/authentication/__init__.py +0 -0
- {datacrunch-1.8.1 → datacrunch-1.8.3}/datacrunch/authentication/authentication.py +0 -0
- {datacrunch-1.8.1 → datacrunch-1.8.3}/datacrunch/balance/__init__.py +0 -0
- {datacrunch-1.8.1 → datacrunch-1.8.3}/datacrunch/balance/balance.py +0 -0
- {datacrunch-1.8.1 → datacrunch-1.8.3}/datacrunch/constants.py +0 -0
- {datacrunch-1.8.1 → datacrunch-1.8.3}/datacrunch/containers/__init__.py +0 -0
- {datacrunch-1.8.1 → datacrunch-1.8.3}/datacrunch/containers/containers.py +0 -0
- {datacrunch-1.8.1 → datacrunch-1.8.3}/datacrunch/datacrunch.py +0 -0
- {datacrunch-1.8.1 → datacrunch-1.8.3}/datacrunch/exceptions.py +0 -0
- {datacrunch-1.8.1 → datacrunch-1.8.3}/datacrunch/helpers.py +0 -0
- {datacrunch-1.8.1 → datacrunch-1.8.3}/datacrunch/http_client/__init__.py +0 -0
- {datacrunch-1.8.1 → datacrunch-1.8.3}/datacrunch/http_client/http_client.py +0 -0
- {datacrunch-1.8.1 → datacrunch-1.8.3}/datacrunch/images/__init__.py +0 -0
- {datacrunch-1.8.1 → datacrunch-1.8.3}/datacrunch/images/images.py +0 -0
- {datacrunch-1.8.1 → datacrunch-1.8.3}/datacrunch/instance_types/__init__.py +0 -0
- {datacrunch-1.8.1 → datacrunch-1.8.3}/datacrunch/instance_types/instance_types.py +0 -0
- {datacrunch-1.8.1 → datacrunch-1.8.3}/datacrunch/instances/__init__.py +0 -0
- {datacrunch-1.8.1 → datacrunch-1.8.3}/datacrunch/instances/instances.py +0 -0
- {datacrunch-1.8.1 → datacrunch-1.8.3}/datacrunch/locations/__init__.py +0 -0
- {datacrunch-1.8.1 → datacrunch-1.8.3}/datacrunch/locations/locations.py +0 -0
- {datacrunch-1.8.1 → datacrunch-1.8.3}/datacrunch/ssh_keys/__init__.py +0 -0
- {datacrunch-1.8.1 → datacrunch-1.8.3}/datacrunch/ssh_keys/ssh_keys.py +0 -0
- {datacrunch-1.8.1 → datacrunch-1.8.3}/datacrunch/startup_scripts/__init__.py +0 -0
- {datacrunch-1.8.1 → datacrunch-1.8.3}/datacrunch/startup_scripts/startup_scripts.py +0 -0
- {datacrunch-1.8.1 → datacrunch-1.8.3}/datacrunch/volume_types/__init__.py +0 -0
- {datacrunch-1.8.1 → datacrunch-1.8.3}/datacrunch/volume_types/volume_types.py +0 -0
- {datacrunch-1.8.1 → datacrunch-1.8.3}/datacrunch/volumes/__init__.py +0 -0
- {datacrunch-1.8.1 → datacrunch-1.8.3}/datacrunch/volumes/volumes.py +0 -0
- {datacrunch-1.8.1 → datacrunch-1.8.3}/datacrunch.egg-info/SOURCES.txt +0 -0
- {datacrunch-1.8.1 → datacrunch-1.8.3}/datacrunch.egg-info/dependency_links.txt +0 -0
- {datacrunch-1.8.1 → datacrunch-1.8.3}/datacrunch.egg-info/top_level.txt +0 -0
- {datacrunch-1.8.1 → datacrunch-1.8.3}/setup.cfg +0 -0
- {datacrunch-1.8.1 → datacrunch-1.8.3}/tests/__init__.py +0 -0
- {datacrunch-1.8.1 → datacrunch-1.8.3}/tests/integration_tests/__init__.py +0 -0
- {datacrunch-1.8.1 → datacrunch-1.8.3}/tests/integration_tests/conftest.py +0 -0
- {datacrunch-1.8.1 → datacrunch-1.8.3}/tests/integration_tests/test_instances.py +0 -0
- {datacrunch-1.8.1 → datacrunch-1.8.3}/tests/integration_tests/test_locations.py +0 -0
- {datacrunch-1.8.1 → datacrunch-1.8.3}/tests/integration_tests/test_volumes.py +0 -0
- {datacrunch-1.8.1 → datacrunch-1.8.3}/tests/unit_tests/__init__.py +0 -0
- {datacrunch-1.8.1 → datacrunch-1.8.3}/tests/unit_tests/authentication/__init__.py +0 -0
- {datacrunch-1.8.1 → datacrunch-1.8.3}/tests/unit_tests/authentication/test_authentication.py +0 -0
- {datacrunch-1.8.1 → datacrunch-1.8.3}/tests/unit_tests/balance/__init__.py +0 -0
- {datacrunch-1.8.1 → datacrunch-1.8.3}/tests/unit_tests/balance/test_balance.py +0 -0
- {datacrunch-1.8.1 → datacrunch-1.8.3}/tests/unit_tests/conftest.py +0 -0
- {datacrunch-1.8.1 → datacrunch-1.8.3}/tests/unit_tests/containers/__init__.py +0 -0
- {datacrunch-1.8.1 → datacrunch-1.8.3}/tests/unit_tests/containers/test_containers.py +0 -0
- {datacrunch-1.8.1 → datacrunch-1.8.3}/tests/unit_tests/http_client/__init__.py +0 -0
- {datacrunch-1.8.1 → datacrunch-1.8.3}/tests/unit_tests/http_client/test_http_client.py +0 -0
- {datacrunch-1.8.1 → datacrunch-1.8.3}/tests/unit_tests/images/__init__.py +0 -0
- {datacrunch-1.8.1 → datacrunch-1.8.3}/tests/unit_tests/images/test_images.py +0 -0
- {datacrunch-1.8.1 → datacrunch-1.8.3}/tests/unit_tests/instance_types/__init__.py +0 -0
- {datacrunch-1.8.1 → datacrunch-1.8.3}/tests/unit_tests/instance_types/test_instance_types.py +0 -0
- {datacrunch-1.8.1 → datacrunch-1.8.3}/tests/unit_tests/instances/__init__.py +0 -0
- {datacrunch-1.8.1 → datacrunch-1.8.3}/tests/unit_tests/instances/test_instances.py +0 -0
- {datacrunch-1.8.1 → datacrunch-1.8.3}/tests/unit_tests/ssh_keys/__init__.py +0 -0
- {datacrunch-1.8.1 → datacrunch-1.8.3}/tests/unit_tests/ssh_keys/test_ssh_keys.py +0 -0
- {datacrunch-1.8.1 → datacrunch-1.8.3}/tests/unit_tests/startup_scripts/__init__.py +0 -0
- {datacrunch-1.8.1 → datacrunch-1.8.3}/tests/unit_tests/startup_scripts/test_startup_scripts.py +0 -0
- {datacrunch-1.8.1 → datacrunch-1.8.3}/tests/unit_tests/test_datacrunch.py +0 -0
- {datacrunch-1.8.1 → datacrunch-1.8.3}/tests/unit_tests/test_exceptions.py +0 -0
- {datacrunch-1.8.1 → datacrunch-1.8.3}/tests/unit_tests/volume_types/__init__.py +0 -0
- {datacrunch-1.8.1 → datacrunch-1.8.3}/tests/unit_tests/volume_types/test_volume_types.py +0 -0
- {datacrunch-1.8.1 → datacrunch-1.8.3}/tests/unit_tests/volumes/__init__.py +0 -0
- {datacrunch-1.8.1 → datacrunch-1.8.3}/tests/unit_tests/volumes/test_volumes.py +0 -0
|
@@ -1,26 +1,26 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: datacrunch
|
|
3
|
-
Version: 1.8.
|
|
3
|
+
Version: 1.8.3
|
|
4
4
|
Summary: Official Python SDK for DataCrunch Public API
|
|
5
5
|
Home-page: https://github.com/DataCrunch-io
|
|
6
6
|
Author: DataCrunch Oy
|
|
7
7
|
Author-email: info@datacrunch.io
|
|
8
8
|
Classifier: Programming Language :: Python :: 3
|
|
9
|
-
Classifier: Programming Language :: Python :: 3.6
|
|
10
|
-
Classifier: Programming Language :: Python :: 3.7
|
|
11
|
-
Classifier: Programming Language :: Python :: 3.8
|
|
12
9
|
Classifier: Programming Language :: Python :: 3.9
|
|
13
10
|
Classifier: Programming Language :: Python :: 3.10
|
|
14
11
|
Classifier: Programming Language :: Python :: 3.11
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
15
14
|
Classifier: Development Status :: 5 - Production/Stable
|
|
16
15
|
Classifier: Intended Audience :: Developers
|
|
17
16
|
Classifier: License :: OSI Approved :: MIT License
|
|
18
17
|
Classifier: Operating System :: OS Independent
|
|
19
18
|
Classifier: Natural Language :: English
|
|
20
|
-
Requires-Python: >=3.
|
|
19
|
+
Requires-Python: >=3.9
|
|
21
20
|
Description-Content-Type: text/markdown
|
|
22
21
|
License-File: LICENSE
|
|
23
22
|
Requires-Dist: requests<3,>=2.25.1
|
|
23
|
+
Requires-Dist: dataclasses_json>=0.6.7
|
|
24
24
|
Provides-Extra: dev
|
|
25
25
|
Provides-Extra: test
|
|
26
26
|
Requires-Dist: pytest<7,>=6.2.1; extra == "test"
|
|
@@ -41,35 +41,13 @@ Dynamic: summary
|
|
|
41
41
|
|
|
42
42
|
# DataCrunch Python SDK
|
|
43
43
|
|
|
44
|
-
<
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
</a>
|
|
52
|
-
|
|
53
|
-
<a href="https://codecov.io/gh/DataCrunch-io/datacrunch-python">
|
|
54
|
-
<img src="https://codecov.io/gh/DataCrunch-io/datacrunch-python/branch/master/graph/badge.svg?token=5X5KTYSSPK"/>
|
|
55
|
-
</a>
|
|
56
|
-
|
|
57
|
-
<a href='https://datacrunch-python.readthedocs.io/en/latest/'>
|
|
58
|
-
<img src='https://readthedocs.org/projects/datacrunch-python/badge/?version=latest'></img>
|
|
59
|
-
</a>
|
|
60
|
-
|
|
61
|
-
<a href='https://github.com/DataCrunch-io/datacrunch-python/blob/master/LICENSE'>
|
|
62
|
-
<img src='https://img.shields.io/github/license/DataCrunch-io/datacrunch-python'></img>
|
|
63
|
-
</a>
|
|
64
|
-
|
|
65
|
-
<a href='https://pypi.org/project/datacrunch/'>
|
|
66
|
-
<img src='https://img.shields.io/pypi/v/datacrunch?logo=python'></img>
|
|
67
|
-
</a>
|
|
68
|
-
|
|
69
|
-
<a href='https://pypi.org/project/datacrunch/'>
|
|
70
|
-
<img src='https://img.shields.io/pypi/pyversions/datacrunch'></img>
|
|
71
|
-
</a>
|
|
72
|
-
</p>
|
|
44
|
+
[<img src='https://github.com/DataCrunch-io/datacrunch-python/workflows/Unit%20Tests/badge.svg'>](https://github.com/DataCrunch-io/datacrunch-python/actions?query=workflow%3A%22Unit+Tests%22+branch%3Amaster)
|
|
45
|
+
[<img src='https://github.com/DataCrunch-io/datacrunch-python/workflows/Code%20Style/badge.svg'>](https://github.com/DataCrunch-io/datacrunch-python/actions?query=workflow%3A%22Code+Style%22+branch%3Amaster)
|
|
46
|
+
[<img src="https://codecov.io/gh/DataCrunch-io/datacrunch-python/branch/master/graph/badge.svg?token=5X5KTYSSPK">](https://codecov.io/gh/DataCrunch-io/datacrunch-python)
|
|
47
|
+
[<img src='https://readthedocs.org/projects/datacrunch-python/badge/?version=latest'>](https://datacrunch-python.readthedocs.io/en/latest/)
|
|
48
|
+
[<img src='https://img.shields.io/github/license/DataCrunch-io/datacrunch-python'>](https://github.com/DataCrunch-io/datacrunch-python/blob/master/LICENSE)
|
|
49
|
+
[<img src='https://img.shields.io/pypi/v/datacrunch?logo=python'>](https://pypi.org/project/datacrunch/)
|
|
50
|
+
[<img src='https://img.shields.io/pypi/pyversions/datacrunch'>](https://pypi.org/project/datacrunch/)
|
|
73
51
|
|
|
74
52
|
The official [DataCrunch.io](https://datacrunch.io) Python SDK.
|
|
75
53
|
|
|
@@ -213,4 +191,4 @@ autopep8 file.py --in-place
|
|
|
213
191
|
|
|
214
192
|
## Contact
|
|
215
193
|
|
|
216
|
-
You can [contact us here](https://datacrunch.io/contact
|
|
194
|
+
You can [contact us here](https://datacrunch.io/contact), or open an issue in the repo.
|
|
@@ -1,34 +1,12 @@
|
|
|
1
1
|
# DataCrunch Python SDK
|
|
2
2
|
|
|
3
|
-
<
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
</a>
|
|
11
|
-
|
|
12
|
-
<a href="https://codecov.io/gh/DataCrunch-io/datacrunch-python">
|
|
13
|
-
<img src="https://codecov.io/gh/DataCrunch-io/datacrunch-python/branch/master/graph/badge.svg?token=5X5KTYSSPK"/>
|
|
14
|
-
</a>
|
|
15
|
-
|
|
16
|
-
<a href='https://datacrunch-python.readthedocs.io/en/latest/'>
|
|
17
|
-
<img src='https://readthedocs.org/projects/datacrunch-python/badge/?version=latest'></img>
|
|
18
|
-
</a>
|
|
19
|
-
|
|
20
|
-
<a href='https://github.com/DataCrunch-io/datacrunch-python/blob/master/LICENSE'>
|
|
21
|
-
<img src='https://img.shields.io/github/license/DataCrunch-io/datacrunch-python'></img>
|
|
22
|
-
</a>
|
|
23
|
-
|
|
24
|
-
<a href='https://pypi.org/project/datacrunch/'>
|
|
25
|
-
<img src='https://img.shields.io/pypi/v/datacrunch?logo=python'></img>
|
|
26
|
-
</a>
|
|
27
|
-
|
|
28
|
-
<a href='https://pypi.org/project/datacrunch/'>
|
|
29
|
-
<img src='https://img.shields.io/pypi/pyversions/datacrunch'></img>
|
|
30
|
-
</a>
|
|
31
|
-
</p>
|
|
3
|
+
[<img src='https://github.com/DataCrunch-io/datacrunch-python/workflows/Unit%20Tests/badge.svg'>](https://github.com/DataCrunch-io/datacrunch-python/actions?query=workflow%3A%22Unit+Tests%22+branch%3Amaster)
|
|
4
|
+
[<img src='https://github.com/DataCrunch-io/datacrunch-python/workflows/Code%20Style/badge.svg'>](https://github.com/DataCrunch-io/datacrunch-python/actions?query=workflow%3A%22Code+Style%22+branch%3Amaster)
|
|
5
|
+
[<img src="https://codecov.io/gh/DataCrunch-io/datacrunch-python/branch/master/graph/badge.svg?token=5X5KTYSSPK">](https://codecov.io/gh/DataCrunch-io/datacrunch-python)
|
|
6
|
+
[<img src='https://readthedocs.org/projects/datacrunch-python/badge/?version=latest'>](https://datacrunch-python.readthedocs.io/en/latest/)
|
|
7
|
+
[<img src='https://img.shields.io/github/license/DataCrunch-io/datacrunch-python'>](https://github.com/DataCrunch-io/datacrunch-python/blob/master/LICENSE)
|
|
8
|
+
[<img src='https://img.shields.io/pypi/v/datacrunch?logo=python'>](https://pypi.org/project/datacrunch/)
|
|
9
|
+
[<img src='https://img.shields.io/pypi/pyversions/datacrunch'>](https://pypi.org/project/datacrunch/)
|
|
32
10
|
|
|
33
11
|
The official [DataCrunch.io](https://datacrunch.io) Python SDK.
|
|
34
12
|
|
|
@@ -172,4 +150,4 @@ autopep8 file.py --in-place
|
|
|
172
150
|
|
|
173
151
|
## Contact
|
|
174
152
|
|
|
175
|
-
You can [contact us here](https://datacrunch.io/contact
|
|
153
|
+
You can [contact us here](https://datacrunch.io/contact), or open an issue in the repo.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
VERSION = '1.8.3'
|
|
@@ -1,26 +1,26 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: datacrunch
|
|
3
|
-
Version: 1.8.
|
|
3
|
+
Version: 1.8.3
|
|
4
4
|
Summary: Official Python SDK for DataCrunch Public API
|
|
5
5
|
Home-page: https://github.com/DataCrunch-io
|
|
6
6
|
Author: DataCrunch Oy
|
|
7
7
|
Author-email: info@datacrunch.io
|
|
8
8
|
Classifier: Programming Language :: Python :: 3
|
|
9
|
-
Classifier: Programming Language :: Python :: 3.6
|
|
10
|
-
Classifier: Programming Language :: Python :: 3.7
|
|
11
|
-
Classifier: Programming Language :: Python :: 3.8
|
|
12
9
|
Classifier: Programming Language :: Python :: 3.9
|
|
13
10
|
Classifier: Programming Language :: Python :: 3.10
|
|
14
11
|
Classifier: Programming Language :: Python :: 3.11
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
15
14
|
Classifier: Development Status :: 5 - Production/Stable
|
|
16
15
|
Classifier: Intended Audience :: Developers
|
|
17
16
|
Classifier: License :: OSI Approved :: MIT License
|
|
18
17
|
Classifier: Operating System :: OS Independent
|
|
19
18
|
Classifier: Natural Language :: English
|
|
20
|
-
Requires-Python: >=3.
|
|
19
|
+
Requires-Python: >=3.9
|
|
21
20
|
Description-Content-Type: text/markdown
|
|
22
21
|
License-File: LICENSE
|
|
23
22
|
Requires-Dist: requests<3,>=2.25.1
|
|
23
|
+
Requires-Dist: dataclasses_json>=0.6.7
|
|
24
24
|
Provides-Extra: dev
|
|
25
25
|
Provides-Extra: test
|
|
26
26
|
Requires-Dist: pytest<7,>=6.2.1; extra == "test"
|
|
@@ -41,35 +41,13 @@ Dynamic: summary
|
|
|
41
41
|
|
|
42
42
|
# DataCrunch Python SDK
|
|
43
43
|
|
|
44
|
-
<
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
</a>
|
|
52
|
-
|
|
53
|
-
<a href="https://codecov.io/gh/DataCrunch-io/datacrunch-python">
|
|
54
|
-
<img src="https://codecov.io/gh/DataCrunch-io/datacrunch-python/branch/master/graph/badge.svg?token=5X5KTYSSPK"/>
|
|
55
|
-
</a>
|
|
56
|
-
|
|
57
|
-
<a href='https://datacrunch-python.readthedocs.io/en/latest/'>
|
|
58
|
-
<img src='https://readthedocs.org/projects/datacrunch-python/badge/?version=latest'></img>
|
|
59
|
-
</a>
|
|
60
|
-
|
|
61
|
-
<a href='https://github.com/DataCrunch-io/datacrunch-python/blob/master/LICENSE'>
|
|
62
|
-
<img src='https://img.shields.io/github/license/DataCrunch-io/datacrunch-python'></img>
|
|
63
|
-
</a>
|
|
64
|
-
|
|
65
|
-
<a href='https://pypi.org/project/datacrunch/'>
|
|
66
|
-
<img src='https://img.shields.io/pypi/v/datacrunch?logo=python'></img>
|
|
67
|
-
</a>
|
|
68
|
-
|
|
69
|
-
<a href='https://pypi.org/project/datacrunch/'>
|
|
70
|
-
<img src='https://img.shields.io/pypi/pyversions/datacrunch'></img>
|
|
71
|
-
</a>
|
|
72
|
-
</p>
|
|
44
|
+
[<img src='https://github.com/DataCrunch-io/datacrunch-python/workflows/Unit%20Tests/badge.svg'>](https://github.com/DataCrunch-io/datacrunch-python/actions?query=workflow%3A%22Unit+Tests%22+branch%3Amaster)
|
|
45
|
+
[<img src='https://github.com/DataCrunch-io/datacrunch-python/workflows/Code%20Style/badge.svg'>](https://github.com/DataCrunch-io/datacrunch-python/actions?query=workflow%3A%22Code+Style%22+branch%3Amaster)
|
|
46
|
+
[<img src="https://codecov.io/gh/DataCrunch-io/datacrunch-python/branch/master/graph/badge.svg?token=5X5KTYSSPK">](https://codecov.io/gh/DataCrunch-io/datacrunch-python)
|
|
47
|
+
[<img src='https://readthedocs.org/projects/datacrunch-python/badge/?version=latest'>](https://datacrunch-python.readthedocs.io/en/latest/)
|
|
48
|
+
[<img src='https://img.shields.io/github/license/DataCrunch-io/datacrunch-python'>](https://github.com/DataCrunch-io/datacrunch-python/blob/master/LICENSE)
|
|
49
|
+
[<img src='https://img.shields.io/pypi/v/datacrunch?logo=python'>](https://pypi.org/project/datacrunch/)
|
|
50
|
+
[<img src='https://img.shields.io/pypi/pyversions/datacrunch'>](https://pypi.org/project/datacrunch/)
|
|
73
51
|
|
|
74
52
|
The official [DataCrunch.io](https://datacrunch.io) Python SDK.
|
|
75
53
|
|
|
@@ -213,4 +191,4 @@ autopep8 file.py --in-place
|
|
|
213
191
|
|
|
214
192
|
## Contact
|
|
215
193
|
|
|
216
|
-
You can [contact us here](https://datacrunch.io/contact
|
|
194
|
+
You can [contact us here](https://datacrunch.io/contact), or open an issue in the repo.
|
|
@@ -17,7 +17,10 @@ setuptools.setup(
|
|
|
17
17
|
long_description_content_type="text/markdown",
|
|
18
18
|
url="https://github.com/DataCrunch-io",
|
|
19
19
|
packages=setuptools.find_packages(),
|
|
20
|
-
install_requires=[
|
|
20
|
+
install_requires=[
|
|
21
|
+
'requests>=2.25.1,<3',
|
|
22
|
+
'dataclasses_json>=0.6.7'
|
|
23
|
+
],
|
|
21
24
|
extras_require={
|
|
22
25
|
'dev': [''],
|
|
23
26
|
'test': ['pytest>=6.2.1,<7',
|
|
@@ -27,17 +30,16 @@ setuptools.setup(
|
|
|
27
30
|
},
|
|
28
31
|
classifiers=[
|
|
29
32
|
"Programming Language :: Python :: 3",
|
|
30
|
-
'Programming Language :: Python :: 3.6',
|
|
31
|
-
'Programming Language :: Python :: 3.7',
|
|
32
|
-
'Programming Language :: Python :: 3.8',
|
|
33
33
|
'Programming Language :: Python :: 3.9',
|
|
34
34
|
'Programming Language :: Python :: 3.10',
|
|
35
35
|
'Programming Language :: Python :: 3.11',
|
|
36
|
+
'Programming Language :: Python :: 3.12',
|
|
37
|
+
'Programming Language :: Python :: 3.13',
|
|
36
38
|
"Development Status :: 5 - Production/Stable",
|
|
37
39
|
"Intended Audience :: Developers",
|
|
38
40
|
"License :: OSI Approved :: MIT License",
|
|
39
41
|
"Operating System :: OS Independent",
|
|
40
42
|
"Natural Language :: English"
|
|
41
43
|
],
|
|
42
|
-
python_requires='>=3.
|
|
44
|
+
python_requires='>=3.9',
|
|
43
45
|
)
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
VERSION = '1.8.1'
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{datacrunch-1.8.1 → datacrunch-1.8.3}/tests/unit_tests/authentication/test_authentication.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{datacrunch-1.8.1 → datacrunch-1.8.3}/tests/unit_tests/instance_types/test_instance_types.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{datacrunch-1.8.1 → datacrunch-1.8.3}/tests/unit_tests/startup_scripts/test_startup_scripts.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|