galileo 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.
- galileo-0.0.1/PKG-INFO +12 -0
- galileo-0.0.1/pyproject.toml +14 -0
- galileo-0.0.1/src/galileo/__init__.py +0 -0
galileo-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
Metadata-Version: 2.3
|
|
2
|
+
Name: galileo
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: The Galileo Python SDK
|
|
5
|
+
Author: Galileo Technologies Inc.
|
|
6
|
+
Author-email: team@rungalileo.io
|
|
7
|
+
Requires-Python: >=3.10,<4.0
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
10
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
[tool.poetry]
|
|
2
|
+
name = "galileo"
|
|
3
|
+
version = "0.0.1"
|
|
4
|
+
description = "The Galileo Python SDK"
|
|
5
|
+
authors = ["Galileo Technologies Inc. <team@rungalileo.io>"]
|
|
6
|
+
packages = [{ include = "galileo", from = "src" }]
|
|
7
|
+
|
|
8
|
+
[tool.poetry.dependencies]
|
|
9
|
+
python = "^3.10"
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
[build-system]
|
|
13
|
+
requires = ["poetry-core"]
|
|
14
|
+
build-backend = "poetry.core.masonry.api"
|
|
File without changes
|