-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
48 lines (42 loc) · 995 Bytes
/
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
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "angst"
description = "Angular statistics"
readme = "README.md"
license = "MIT"
authors = [
{name = "Nicolas Tessore", email = "[email protected]"},
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
requires-python = ">=3.8"
dependencies = [
"numpy>=1.20.0",
]
dynamic = ["version"]
[project.optional-dependencies]
test = [
"pytest>=6.0",
]
docs = [
"sphinx",
"furo",
"sphinxcontrib-katex",
"numpydoc",
]
[project.urls]
Documentation = "https://angst.readthedocs.io/"
Repository = "https://github.com/ntessore/angst"
Issues = "https://github.com/ntessore/angst/issues"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "src/angst/_version.py"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "--import-mode importlib"