-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
45 lines (40 loc) · 1.2 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
[build-system]
requires = ["setuptools", "wheel", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[project]
name = "errbrac"
authors = [
{ name = "SS", email = "[email protected]" },
]
license = { file = "LICENSE" }
description = "Parse & format scientific error notations"
readme = "README.md"
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"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.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
"Typing :: Typed",
]
requires-python = ">=3.8"
dynamic = ["version"]
dependencies = []
[project.optional-dependencies]
dev = ["ruff", "pytest", "pytest-cov", "tox", "mypy"]
[tool.setuptools_scm]
version_file = "errbrac/_version.py"
[tool.ruff]
target-version = "py38"
line-length = 120
[tool.mypy]
python_version = "3.8"
strict = true