-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (33 loc) · 1.04 KB
/
Copy pathsetup.py
File metadata and controls
35 lines (33 loc) · 1.04 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
34
35
"""Setup configuration for the Gravitronics package."""
from setuptools import setup, find_packages
setup(
name="gravitronics",
version="1.1.0",
description="Lightweight Gravitational Transformer (LGT) framework",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="Gravitronics Contributors",
python_requires=">=3.9",
packages=find_packages(),
install_requires=[
"torch>=2.0.0",
"numpy>=1.24.0",
"pyyaml>=6.0",
"psutil>=5.9.0",
],
extras_require={
"onnx": ["onnx>=1.14.0", "onnxruntime>=1.15.0"],
"wizard": [], # tkinter ships with Python; no extra deps needed
},
entry_points={
"console_scripts": [
"gravitronics=gravitronics.cli:main",
],
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
)