snowleopard 0.1.0__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.
- snowleopard-0.1.0/LICENSE +2 -0
- snowleopard-0.1.0/PKG-INFO +16 -0
- snowleopard-0.1.0/README.md +1 -0
- snowleopard-0.1.0/pyproject.toml +39 -0
- snowleopard-0.1.0/setup.cfg +4 -0
- snowleopard-0.1.0/src/snowleopard/__init__.py +5 -0
- snowleopard-0.1.0/src/snowleopard.egg-info/PKG-INFO +16 -0
- snowleopard-0.1.0/src/snowleopard.egg-info/SOURCES.txt +9 -0
- snowleopard-0.1.0/src/snowleopard.egg-info/dependency_links.txt +1 -0
- snowleopard-0.1.0/src/snowleopard.egg-info/requires.txt +3 -0
- snowleopard-0.1.0/src/snowleopard.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: snowleopard
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: snowleopard.ai client library
|
|
5
|
+
License: copyright 2024 Snow Leopard, Inc
|
|
6
|
+
all rights reserved
|
|
7
|
+
|
|
8
|
+
Classifier: Development Status :: 1 - Planning
|
|
9
|
+
Classifier: Environment :: Console
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Requires-Python: >=3.8
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
License-File: LICENSE
|
|
14
|
+
Requires-Dist: importlib_metadata>=4.6; python_version < "3.10"
|
|
15
|
+
|
|
16
|
+
# SnowLeopard-ai python client library
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# SnowLeopard-ai python client library
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
|
|
2
|
+
|
|
3
|
+
[build-system]
|
|
4
|
+
requires = ["setuptools>=61.0.0", "wheel"]
|
|
5
|
+
build-backend = "setuptools.build_meta"
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
[project]
|
|
9
|
+
name = "snowleopard"
|
|
10
|
+
dynamic = ["version"]
|
|
11
|
+
|
|
12
|
+
description = "snowleopard.ai client library"
|
|
13
|
+
|
|
14
|
+
readme = "README.md"
|
|
15
|
+
license = {file = "LICENSE"}
|
|
16
|
+
|
|
17
|
+
# list of classifier strings, defined here: https://pypi.org/classifiers/
|
|
18
|
+
classifiers = [
|
|
19
|
+
"Development Status :: 1 - Planning",
|
|
20
|
+
"Environment :: Console",
|
|
21
|
+
"Intended Audience :: Developers",
|
|
22
|
+
]
|
|
23
|
+
|
|
24
|
+
# see https://devguide.python.org/versions/#versions for end-of-life dates
|
|
25
|
+
# next update: 3.8 EoL is 2024-10
|
|
26
|
+
requires-python = ">=3.8"
|
|
27
|
+
|
|
28
|
+
dependencies = [
|
|
29
|
+
"importlib_metadata >= 4.6 ; python_version < '3.10'"
|
|
30
|
+
]
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
[tool.setuptools]
|
|
34
|
+
|
|
35
|
+
[tool.setuptools.packages.find]
|
|
36
|
+
where = ["src"]
|
|
37
|
+
|
|
38
|
+
[tool.setuptools.dynamic]
|
|
39
|
+
version = { attr = "snowleopard.__version__" }
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: snowleopard
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: snowleopard.ai client library
|
|
5
|
+
License: copyright 2024 Snow Leopard, Inc
|
|
6
|
+
all rights reserved
|
|
7
|
+
|
|
8
|
+
Classifier: Development Status :: 1 - Planning
|
|
9
|
+
Classifier: Environment :: Console
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Requires-Python: >=3.8
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
License-File: LICENSE
|
|
14
|
+
Requires-Dist: importlib_metadata>=4.6; python_version < "3.10"
|
|
15
|
+
|
|
16
|
+
# SnowLeopard-ai python client library
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
LICENSE
|
|
2
|
+
README.md
|
|
3
|
+
pyproject.toml
|
|
4
|
+
src/snowleopard/__init__.py
|
|
5
|
+
src/snowleopard.egg-info/PKG-INFO
|
|
6
|
+
src/snowleopard.egg-info/SOURCES.txt
|
|
7
|
+
src/snowleopard.egg-info/dependency_links.txt
|
|
8
|
+
src/snowleopard.egg-info/requires.txt
|
|
9
|
+
src/snowleopard.egg-info/top_level.txt
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
snowleopard
|