-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
52 lines (44 loc) · 1.14 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "swarm_visualizer"
version = "0.0.1"
authors = [
{ name="UT Austin Swarm Lab", email="minkyu.choi@utexas.edu" },
]
description = "This is a plotting utility library for swarm robotics research."
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"numpy",
"pandas",
"seaborn==0.11.2",
"matplotlib==3.7.3",
"statannotations==0.6.0",
"scipy"
]
[project.urls]
"Homepage" = "https://github.com/UTAustin-SwarmLab/Swarm-Visualization"
"Bug Tracker" = "https://github.com/UTAustin-SwarmLab/Swarm-Visualization"
[project.optional-dependencies]
dev = ["black", "ruff", "mypy"]
test = ["pytest", "pytest-cov", "pytest-mock"]
[tool.black]
line-length = 80
[tool.ruff]
select = [
"E", # pycodestyle
"F", # pyflakes
"UP", # pyupgrade
"D", # pydocstyle
]
ignore = ["ANN101", "ANN102"]
extend-exclude = [".venv", "venv", "vscode"]
[tool.ruff.pydocstyle]
convention = "google"