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.
- agenteye-0.0.1/PKG-INFO +5 -0
- agenteye-0.0.1/agenteye.egg-info/PKG-INFO +5 -0
- agenteye-0.0.1/agenteye.egg-info/SOURCES.txt +6 -0
- agenteye-0.0.1/agenteye.egg-info/dependency_links.txt +1 -0
- agenteye-0.0.1/agenteye.egg-info/top_level.txt +1 -0
- agenteye-0.0.1/pyproject.toml +13 -0
- agenteye-0.0.1/setup.cfg +4 -0
- agenteye-0.0.1/setup.py +17 -0
agenteye-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -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.
|
agenteye-0.0.1/setup.cfg
ADDED
agenteye-0.0.1/setup.py
ADDED
|
@@ -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()
|