-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
83 lines (72 loc) · 1.84 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
[project]
name = "mache"
dynamic = ["version"]
authors = [
{ name="Xylar Asay-Davis", email="[email protected]" },
{ name="Althea Denlinger", email="[email protected]" }
]
description = "A package for providing configuration data related to E3SM supported machines."
license = {file = "LICENSE"}
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
# these are only for searching/browsing projects on PyPI
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
]
dependencies = [
"importlib_resources",
"jinja2",
"lxml",
"pyyaml",
"progressbar2",
]
[project.optional-dependencies]
docs = [
# building documentation
"sphinx >=7.0.0",
"sphinx_rtd_theme",
"myst-parser",
"sphinx-multiversion",
]
dev = [
# linting and testing
"pip",
"pytest",
"isort",
"flynt",
"flake8",
"mypy",
"pre-commit",
]
[tool.isort]
multi_line_output = "3"
include_trailing_comma = true
force_grid_wrap = "0"
use_parentheses = true
line_length = "79"
[tool.mypy]
python_version = "3.10"
check_untyped_defs = true
ignore_missing_imports = true
warn_unused_ignores = true
warn_redundant_casts = true
warn_unused_configs = true
[build-system]
requires = ["setuptools>=60"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
exclude = ["docs*", "conda*"]
[tool.setuptools.dynamic]
version = { attr = "mache.version.__version__" }
# evolution of options.entry-points
[project.scripts]
mache = "mache.__main__:main"
[project.urls]
Documentation = "https://docs.e3sm.org/mache"
"Bug Tracker" = "https://github.com/E3SM-Project/mache/issues"