2024-10-02 16:25:45 +02:00
|
|
|
[build-system]
|
|
|
|
requires = ["setuptools>=61.0", "wheel"]
|
|
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
|
|
|
|
[project]
|
|
|
|
name = "nucon"
|
|
|
|
version = "0.1.0"
|
|
|
|
description = "A Python library to interface with and control parameters in the game Nucleares"
|
|
|
|
authors = [{name = "Dominik Roth", email = "mail@dominik-roth.eu"}]
|
|
|
|
readme = "README.md"
|
|
|
|
requires-python = ">=3.7"
|
|
|
|
classifiers = [
|
|
|
|
"Development Status :: 3 - Alpha",
|
|
|
|
"Intended Audience :: Developers",
|
|
|
|
"License :: OSI Approved :: MIT License",
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"Programming Language :: Python :: 3.7",
|
|
|
|
"Programming Language :: Python :: 3.8",
|
|
|
|
"Programming Language :: Python :: 3.9",
|
|
|
|
"Programming Language :: Python :: 3.10",
|
|
|
|
"Programming Language :: Python :: 3.11",
|
|
|
|
]
|
|
|
|
dependencies = [
|
|
|
|
"requests",
|
|
|
|
]
|
|
|
|
|
|
|
|
[project.urls]
|
2024-10-02 22:36:43 +02:00
|
|
|
Homepage = "https://git.dominik-roth.eu/dodox/nucon"
|
2024-10-02 16:25:45 +02:00
|
|
|
|
|
|
|
[project.optional-dependencies]
|
2024-10-03 23:26:14 +02:00
|
|
|
dev = ["pytest"]
|
|
|
|
rl = ["gymnasium", "numpy"]
|
2024-10-03 23:33:11 +02:00
|
|
|
sim = ["torch", "flask"]
|
2024-10-03 23:26:14 +02:00
|
|
|
model = ["torch", "numpy"]
|
|
|
|
drake = ["Pillow"]
|
|
|
|
|
|
|
|
[tool.setuptools.package-data]
|
|
|
|
"nucon" = ["drake_assets/*"]
|
|
|
|
|
|
|
|
[tool.setuptools]
|
|
|
|
include-package-data = true
|