-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpyproject.toml
35 lines (31 loc) · 865 Bytes
/
pyproject.toml
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "motornet"
dynamic = ["version"]
authors = [
{ name="Olivier Codol", email="[email protected]" },
]
description = "A PyTorch-powered python toolbox to train deep neural networks to perform motor tasks."
readme = "README.md"
requires-python = ">=3.10"
keywords = ["motornet", "pytorch"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
dependencies = [
"numpy",
"torch",
"gymnasium",
"matplotlib",
]
[tool.setuptools.dynamic]
version = {attr = "motornet.__version__"}
[tool.setuptools]
packages = ["motornet"]
[project.urls]
"Homepage" = "https://motornet.org"
"Github" = "https://github.com/OlivierCodol/MotorNet"