-
-
Notifications
You must be signed in to change notification settings - Fork 92
/
pyproject.toml
64 lines (60 loc) · 1.69 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
[build-system]
requires = [
"hatchling",
]
build-backend = "hatchling.build"
[project]
name = "AHRS"
dynamic = ["version"]
description = "Attitude and Heading Reference Systems."
readme = {file = "README.md", content-type = "text/markdown"}
requires-python = ">=3.9"
license = {text = "MIT"}
authors = [
{name = "Mario Garcia", email = "mariogc@protonmail.com"}
]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Education",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: GIS",
"Topic :: Software Development :: Embedded Systems",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"numpy>=1.17",
"docutils>=0.18.1",
]
[tool.hatch.version]
path = "ahrs/__init__.py"
pattern = "^__version__ = ['\"](?P<version>[^'\"]*)['\"]"
[project.urls]
"Homepage" = "https://github.com/Mayitzin/ahrs/"
"Source Code" = "https://github.com/Mayitzin/ahrs/"
"Bug Tracker" = "https://github.com/Mayitzin/ahrs/issues"
[project.optional-dependencies]
dev = [
"pytest",
"flake8",
"black",
]
docs = [
"sphinx",
"sphinxcontrib-bibtex>=2.6.3",
"pydata_sphinx_theme"
]
build = [
"hatch",
"hatchling",
]