-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
43 lines (37 loc) · 1.06 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
[project]
name = "frccontrol"
description = "Provides SciPy wrappers for easing development of state-space models for the FIRST Robotics Competition"
dynamic = [ "version" ]
readme = "README.rst"
dependencies = [ "matplotlib", "numpy", "scipy" ]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"Programming Language :: Python :: 3"
]
[project.license]
text = "BSD-3-Clause"
[[project.authors]]
name = "Tyler Veness"
email = "[email protected]"
[project.urls]
Homepage = "https://github.com/calcmogul/frccontrol"
[build-system]
requires = [
"matplotlib",
"numpy",
"scipy",
"setuptools>=61.0",
"setuptools-git-versioning"
]
build-backend = "setuptools.build_meta"
[tool.setuptools-git-versioning]
enabled = true
version_callback = "frccontrol.version:get_version"
[tool.pytest.ini_options]
minversion = "6.0"
testpaths = [ "frccontrol/test" ]