agenteye 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.
@@ -0,0 +1,5 @@
1
+ Metadata-Version: 2.4
2
+ Name: agenteye
3
+ Version: 0.0.1
4
+ Summary: AgentEye is an enterprise product. Contact support@exosphere.host for access.
5
+ Requires-Python: >=3.8
@@ -0,0 +1,5 @@
1
+ Metadata-Version: 2.4
2
+ Name: agenteye
3
+ Version: 0.0.1
4
+ Summary: AgentEye is an enterprise product. Contact support@exosphere.host for access.
5
+ Requires-Python: >=3.8
@@ -0,0 +1,6 @@
1
+ pyproject.toml
2
+ setup.py
3
+ agenteye.egg-info/PKG-INFO
4
+ agenteye.egg-info/SOURCES.txt
5
+ agenteye.egg-info/dependency_links.txt
6
+ agenteye.egg-info/top_level.txt
@@ -0,0 +1,13 @@
1
+ [build-system]
2
+ requires = ["setuptools>=42"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "agenteye"
7
+ version = "0.0.1"
8
+ description = "AgentEye is an enterprise product. Contact support@exosphere.host for access."
9
+ requires-python = ">=3.8"
10
+
11
+ [tool.uv]
12
+ # Publishing: uv build --sdist && uv publish
13
+ # Bump version here before each publish.
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,17 @@
1
+ import sys
2
+
3
+ # Block only when pip tries to build a wheel for installation.
4
+ # Allow `uv build --sdist` (called with 'sdist') so we can publish.
5
+ if "bdist_wheel" in sys.argv or "install" in sys.argv:
6
+ sys.stderr.write(
7
+ "\n"
8
+ "ERROR: 'agenteye' is not available on public PyPI.\n"
9
+ "AgentEye is an enterprise product and is distributed privately.\n"
10
+ "Please contact support@exosphere.host for access.\n"
11
+ "\n"
12
+ )
13
+ sys.exit(1)
14
+
15
+ from setuptools import setup
16
+
17
+ setup()