-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
46 lines (39 loc) · 1.28 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
[build-system]
requires = ["build", "setuptools-scm"]
[project]
dynamic = ["version"]
name = "iam_units"
description = "Unit definitions for integrated-assessment research"
authors = [{ name = "IAM-units contributors" }]
maintainers = [
{ name = "Paul Natsuo Kishimoto", email = "[email protected]" },
]
license = { file = "LICENSE" }
readme = "README.rst"
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Information Analysis",
]
dependencies = ["pint >= 0.11", "typing_extensions; python_version < '3.8'"]
[project.urls]
homepage = "https://github.com/IAMconsortium/units"
[project.optional-dependencies]
update = ["globalwarmingpotentials"]
tests = ["numpy", "pandas", "pytest", "pytest-cov"]
[tool.ruff]
select = ["C9", "E", "F", "I", "W"]
[tool.ruff.mccabe]
max-complexity = 7
[tool.setuptools.packages]
find = {}
[tool.setuptools_scm]