-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
91 lines (73 loc) · 2.02 KB
/
pyproject.toml
File metadata and controls
91 lines (73 loc) · 2.02 KB
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
[build-system]
requires = ["setuptools>=61.0", "wheel", "versioneer"]
build-backend = "setuptools.build_meta"
[project]
authors = [
{name = "Eli Ateljevich", email = "Eli.Ateljevich@water.ca.gov"}
]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Libraries :: Python Modules"
]
dependencies = [
# package requirements go here
]
description = "Training tools and standards for ANNs for CalSIM"
dynamic = ["version"]
license = {text = "MIT"}
name = "casanntra"
readme = "README.rst"
requires-python = ">=3.9"
[project.optional-dependencies]
test = [
"pytest",
"pytest-cov",
]
[project.urls]
repository = "https://github.com/CADWRDeltaModeling/casanntra"
[tool.setuptools.packages.find]
where = ["."]
include = ["casanntra"]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
# This covers both typing.TYPE_CHECKING and plain TYPE_CHECKING, with any amount of whitespace
"if\\s+(typing\\.)?TYPE_CHECKING:",
'if __name__ == "__main__":'
]
omit = [
"src/casanntra/__main__.py",
"src/casanntra/_version.py",
"tests/*"
]
[tool.distutils.bdist_wheel]
universal = true
[tool.versioneer]
VCS = "git"
versionfile_source = "casanntra/_version.py"
versionfile_build = "casanntra/_version.py"
tag_prefix = ""
parentdir_prefix = "casanntra-"
[tool.pytest.ini_options]
addopts = [
"-vv",
"--color=yes",
"--cov-append",
"--cov-branch",
"--cov-report=term-missing",
"--cov=casanntra",
"--tb=native",
"--strict-markers",
"--durations=20"
]
markers = [
"serial: execute test serially (to avoid race conditions)",
"slow: tests can take a long time (deselect with '-m \"not slow\"')"
]
norecursedirs = [".*", "*.egg*", "build", "dist", "conda.recipe", "examples", "env", "envs", "scripts"]