-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
68 lines (63 loc) · 1.58 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "jdrones"
description = "Drones models prepared for use via the gymnasium environment"
readme = "README.md"
authors = [{ name = "iwishiwasaneagle", email = "[email protected]" }]
license = { text = "GPL-3.0-or-later" }
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Natural Language :: English",
"Operating System :: Unix",
"Topic :: Scientific/Engineering",
]
requires-python = ">=3.10"
dependencies = [
"libjdrones>=0.1.1",
"loguru",
"numpy",
"scipy",
"gymnasium",
"pydantic",
"numba"
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/iwishiwasaneagle/jdrones/"
Source = "https://github.com/iwishiwasaneagle/jdrones"
[project.optional-dependencies]
test = [
"hypothesis",
"pytest",
"pytest-cov",
"pytest-mock",
"pytest-xdist",
"pytest-extra-markers",
]
examples = [
"sbx-rl",
"optuna",
"sb3-contrib",
"tensorboard",
"tensorflow-probability==0.25.0",
"click",
"wandb"
]
[tool.rstcheck]
ignore_directives = [
"automodule",
"autoclass",
]
ignore_messages = "([dD]uplicate implicit|not referenced)"
[tool.hatch]
version.source = "vcs"
build.hooks.vcs.version-file = "src/jdrones/_version.py"
build.targets.wheel.artifacts = [
"**/_version.py"
]