scoopgeo 0.0.1__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.
- scoopgeo-0.0.1/LICENSE +21 -0
- scoopgeo-0.0.1/PKG-INFO +45 -0
- scoopgeo-0.0.1/README.md +23 -0
- scoopgeo-0.0.1/pyproject.toml +30 -0
- scoopgeo-0.0.1/scoopgeo/__init__.py +12 -0
- scoopgeo-0.0.1/scoopgeo.egg-info/PKG-INFO +45 -0
- scoopgeo-0.0.1/scoopgeo.egg-info/SOURCES.txt +8 -0
- scoopgeo-0.0.1/scoopgeo.egg-info/dependency_links.txt +1 -0
- scoopgeo-0.0.1/scoopgeo.egg-info/top_level.txt +1 -0
- scoopgeo-0.0.1/setup.cfg +4 -0
scoopgeo-0.0.1/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 scoop.geo
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
scoopgeo-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: scoopgeo
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Python client for scoop.geo — geotechnical data platform (placeholder release)
|
|
5
|
+
Author-email: "scoop.geo" <hello@scoopgeo.tech>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://scoopgeo.tech
|
|
8
|
+
Project-URL: Source, https://github.com/scoopgeo/scoop.geo
|
|
9
|
+
Keywords: geotechnical,engineering,cpt,ags,scoopgeo
|
|
10
|
+
Classifier: Development Status :: 1 - Planning
|
|
11
|
+
Classifier: Intended Audience :: Science/Research
|
|
12
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
17
|
+
Classifier: Topic :: Scientific/Engineering
|
|
18
|
+
Requires-Python: >=3.10
|
|
19
|
+
Description-Content-Type: text/markdown
|
|
20
|
+
License-File: LICENSE
|
|
21
|
+
Dynamic: license-file
|
|
22
|
+
|
|
23
|
+
# scoopgeo
|
|
24
|
+
|
|
25
|
+
Python client for [scoop.geo](https://scoopgeo.tech) — geotechnical data platform.
|
|
26
|
+
|
|
27
|
+
This is a **placeholder release** reserving the `scoopgeo` name on PyPI. The
|
|
28
|
+
real client library (read APIs for projects, tests, readings, interpretation,
|
|
29
|
+
cross-sections, layers) ships as v0.1 alongside the public-API stabilisation
|
|
30
|
+
milestone.
|
|
31
|
+
|
|
32
|
+
In the meantime, scoop.geo's REST API is documented at
|
|
33
|
+
[api.scoopgeo.tech/docs](https://api.scoopgeo.tech/docs).
|
|
34
|
+
|
|
35
|
+
## Roadmap
|
|
36
|
+
|
|
37
|
+
- **v0.1** — read-only client for projects, tests, readings, interpretation,
|
|
38
|
+
cross-sections, layers. Cookbook tutorials for PLAXIS 2D, Rocscience RS2,
|
|
39
|
+
Slide2, GeoStudio.
|
|
40
|
+
- **v1.0** — write-back support (programmatic project / test creation), async
|
|
41
|
+
API, typed pagination.
|
|
42
|
+
|
|
43
|
+
## License
|
|
44
|
+
|
|
45
|
+
MIT
|
scoopgeo-0.0.1/README.md
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# scoopgeo
|
|
2
|
+
|
|
3
|
+
Python client for [scoop.geo](https://scoopgeo.tech) — geotechnical data platform.
|
|
4
|
+
|
|
5
|
+
This is a **placeholder release** reserving the `scoopgeo` name on PyPI. The
|
|
6
|
+
real client library (read APIs for projects, tests, readings, interpretation,
|
|
7
|
+
cross-sections, layers) ships as v0.1 alongside the public-API stabilisation
|
|
8
|
+
milestone.
|
|
9
|
+
|
|
10
|
+
In the meantime, scoop.geo's REST API is documented at
|
|
11
|
+
[api.scoopgeo.tech/docs](https://api.scoopgeo.tech/docs).
|
|
12
|
+
|
|
13
|
+
## Roadmap
|
|
14
|
+
|
|
15
|
+
- **v0.1** — read-only client for projects, tests, readings, interpretation,
|
|
16
|
+
cross-sections, layers. Cookbook tutorials for PLAXIS 2D, Rocscience RS2,
|
|
17
|
+
Slide2, GeoStudio.
|
|
18
|
+
- **v1.0** — write-back support (programmatic project / test creation), async
|
|
19
|
+
API, typed pagination.
|
|
20
|
+
|
|
21
|
+
## License
|
|
22
|
+
|
|
23
|
+
MIT
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "scoopgeo"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Python client for scoop.geo — geotechnical data platform (placeholder release)"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = { text = "MIT" }
|
|
11
|
+
authors = [{ name = "scoop.geo", email = "hello@scoopgeo.tech" }]
|
|
12
|
+
requires-python = ">=3.10"
|
|
13
|
+
keywords = ["geotechnical", "engineering", "cpt", "ags", "scoopgeo"]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 1 - Planning",
|
|
16
|
+
"Intended Audience :: Science/Research",
|
|
17
|
+
"License :: OSI Approved :: MIT License",
|
|
18
|
+
"Programming Language :: Python :: 3",
|
|
19
|
+
"Programming Language :: Python :: 3.10",
|
|
20
|
+
"Programming Language :: Python :: 3.11",
|
|
21
|
+
"Programming Language :: Python :: 3.12",
|
|
22
|
+
"Topic :: Scientific/Engineering",
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
[project.urls]
|
|
26
|
+
Homepage = "https://scoopgeo.tech"
|
|
27
|
+
Source = "https://github.com/scoopgeo/scoop.geo"
|
|
28
|
+
|
|
29
|
+
[tool.setuptools.packages.find]
|
|
30
|
+
include = ["scoopgeo*"]
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"""Python client for the scoop.geo geotechnical data platform.
|
|
2
|
+
|
|
3
|
+
This is a placeholder release reserving the ``scoopgeo`` package name on
|
|
4
|
+
PyPI. The actual client library — read APIs for projects, tests,
|
|
5
|
+
readings, interpretation, sections, layers — ships as v0.1 alongside
|
|
6
|
+
the public-API stabilisation milestone.
|
|
7
|
+
|
|
8
|
+
Until then, see https://scoopgeo.tech for product info and
|
|
9
|
+
https://api.scoopgeo.tech/docs for the REST API specification.
|
|
10
|
+
"""
|
|
11
|
+
|
|
12
|
+
__version__ = "0.0.1"
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: scoopgeo
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Python client for scoop.geo — geotechnical data platform (placeholder release)
|
|
5
|
+
Author-email: "scoop.geo" <hello@scoopgeo.tech>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://scoopgeo.tech
|
|
8
|
+
Project-URL: Source, https://github.com/scoopgeo/scoop.geo
|
|
9
|
+
Keywords: geotechnical,engineering,cpt,ags,scoopgeo
|
|
10
|
+
Classifier: Development Status :: 1 - Planning
|
|
11
|
+
Classifier: Intended Audience :: Science/Research
|
|
12
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
17
|
+
Classifier: Topic :: Scientific/Engineering
|
|
18
|
+
Requires-Python: >=3.10
|
|
19
|
+
Description-Content-Type: text/markdown
|
|
20
|
+
License-File: LICENSE
|
|
21
|
+
Dynamic: license-file
|
|
22
|
+
|
|
23
|
+
# scoopgeo
|
|
24
|
+
|
|
25
|
+
Python client for [scoop.geo](https://scoopgeo.tech) — geotechnical data platform.
|
|
26
|
+
|
|
27
|
+
This is a **placeholder release** reserving the `scoopgeo` name on PyPI. The
|
|
28
|
+
real client library (read APIs for projects, tests, readings, interpretation,
|
|
29
|
+
cross-sections, layers) ships as v0.1 alongside the public-API stabilisation
|
|
30
|
+
milestone.
|
|
31
|
+
|
|
32
|
+
In the meantime, scoop.geo's REST API is documented at
|
|
33
|
+
[api.scoopgeo.tech/docs](https://api.scoopgeo.tech/docs).
|
|
34
|
+
|
|
35
|
+
## Roadmap
|
|
36
|
+
|
|
37
|
+
- **v0.1** — read-only client for projects, tests, readings, interpretation,
|
|
38
|
+
cross-sections, layers. Cookbook tutorials for PLAXIS 2D, Rocscience RS2,
|
|
39
|
+
Slide2, GeoStudio.
|
|
40
|
+
- **v1.0** — write-back support (programmatic project / test creation), async
|
|
41
|
+
API, typed pagination.
|
|
42
|
+
|
|
43
|
+
## License
|
|
44
|
+
|
|
45
|
+
MIT
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
scoopgeo
|
scoopgeo-0.0.1/setup.cfg
ADDED