-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (32 loc) · 1.27 KB
/
setup.py
File metadata and controls
33 lines (32 loc) · 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
from setuptools import setup, find_packages
setup(
name="codex-lab-kit",
version="1.0.0",
description="Golden Codex Lab Validation Kit — Standardized experiment protocols for robotic manipulation research",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="iAeternum / Metavolve Labs",
author_email="research@iaeternum.ai",
url="https://github.com/codex-curator/codex-lab-kit",
packages=find_packages(),
python_requires=">=3.9",
install_requires=[
"numpy>=1.24",
],
extras_require={
"core": ["gcp-robotics>=2.0"], # Private core — available to approved partners
"analysis": ["matplotlib>=3.7", "scipy>=1.10"],
},
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Robotics",
],
project_urls={
"Homepage": "https://iaeternum.ai/robotics",
"Bug Tracker": "https://github.com/codex-curator/codex-lab-kit/issues",
"Documentation": "https://github.com/codex-curator/codex-lab-kit/tree/main/docs",
},
)