-
Notifications
You must be signed in to change notification settings - Fork 469
/
pyproject.toml
106 lines (95 loc) · 2.5 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
[project]
name = "Pint"
authors = [
{name="Hernan E. Grecco", email="[email protected]"}
]
license = {text = "BSD"}
description = "Physical quantities module"
readme = "README.rst"
maintainers = [
{name="Hernan E. Grecco", email="[email protected]"},
{name="Jules Chéron", email="[email protected]"}
]
keywords = ["physical", "quantities", "unit", "conversion", "science"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Programming Language :: Python",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.9"
dynamic = ["version", "dependencies"]
[tool.setuptools.package-data]
pint = [
"default_en.txt",
"constants_en.txt",
"py.typed"]
[tool.setuptools.dynamic]
dependencies = {file = "requirements.txt"}
[project.optional-dependencies]
testbase = [
"pytest",
"pytest-cov",
"pytest-subtests",
"pytest-benchmark"
]
test = [
"pytest",
"pytest-mpl",
"pytest-cov",
"pytest-subtests",
"pytest-benchmark"
]
bench = [
"pytest",
"pytest-codspeed"
]
numpy = ["numpy >= 1.23"]
uncertainties = ["uncertainties >= 3.1.6"]
babel = ["babel <= 2.8"]
pandas = ["pint-pandas >= 0.3"]
xarray = ["xarray"]
dask = ["dask"]
mip = ["mip >= 1.13"]
[project.urls]
Homepage = "https://github.com/hgrecco/pint"
Documentation = "https://pint.readthedocs.io/"
[project.scripts]
pint-convert = "pint.pint_convert:main"
[tool.setuptools]
packages = ["pint"]
[build-system]
requires = ["setuptools>=61", "wheel", "setuptools_scm[toml]>=3.4.3"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
[tool.ruff]
extend-exclude = ["build"]
line-length=88
[tool.ruff.lint.isort]
required-imports = ["from __future__ import annotations"]
known-first-party= ["pint"]
[tool.ruff.lint]
extend-select = [
"I", # isort
]
ignore = [
# whitespace before ':' - doesn't work well with black
# "E203",
"E402",
# line too long - let black worry about that
"E501",
# do not assign a lambda expression, use a def
"E731",
# line break before binary operator
# "W503"
]