forked from Connor-Mattson/RobotSwarmSimulator
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (62 loc) · 1.46 KB
/
pyproject.toml
File metadata and controls
65 lines (62 loc) · 1.46 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
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "swarmsim"
version = "1.2.2"
requires-python = ">=3.12"
authors = [
{ name="Connor Mattson", email="c.mattson@utah.edu" },
{ name="kenblu24", email="kenblu24@hotmail.com" },
]
maintainers = [{ name="kenblu24", email="kenblu24@hotmail.com" }]
description = "An agent-based swarm simulator."
readme = {file = "README.md", content-type = "text/markdown"}
license = "MIT"
license-files = ["LICENSE"]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"Topic :: Scientific/Engineering",
]
keywords = ["robotics", "swarm", "agent-based", "simulator"]
dependencies = [
"matplotlib",
"numpy",
"opencv-python",
"ripser",
"pillow",
"pygame-ce",
"PyYAML>=6.0.1",
"scipy",
"scikit-learn",
"thorpy",
"circle_fit",
"shapely",
"pandas",
"quads",
]
[project.optional-dependencies]
dev = [
"ruff",
"pytest",
"pytest-cov",
"pytest-xdist",
"pytest-mock",
]
shapes = ["pointpats"]
docs = [
"pydata-sphinx-theme~=0.16.1",
"sphinx",
"sphinx-autodoc-typehints",
"sphinx-copybutton",
"sphinx-togglebutton",
"sphinx-design",
"numpydoc",
"myst-parser",
"tqdm",
]
[project.urls]
"Homepage" = "https://github.com/kenblu24/RobotSwarmSimulator"
"Bug Tracker" = "https://github.com/kenblu24/RobotSwarmSimulator/issues"