-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
106 lines (91 loc) · 2.21 KB
/
Copy pathpyproject.toml
File metadata and controls
106 lines (91 loc) · 2.21 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
[build-system]
requires = ["setuptools>=42", "wheel", "setuptools_scm[toml]>=3.4"]
build-backend = "setuptools.build_meta"
[project]
name = "erddapper"
version = "0.0.1"
description = "A dapper dataset manager for ERDDAP."
authors = [
{name = "Honza Rychly", email="honza.rychly@tetratech.com"},
]
readme = {file = "README.md", content-type="text/markdown"}
license = {file = "LICENSE"}
requires-python = ">=3.13,<3.14"
dependencies = [
"fastapi>=0.135",
"uvicorn[standard]>=0.44",
"httpx>=0.28",
"pydantic-settings>=2.7",
"lxml>=6,<7",
]
keywords = ["erddapper"]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.13"
]
[project.urls]
[dependency-groups]
dev = [
"pytest",
"pytest-cov",
"isort",
"flake8",
"pre-commit",
"types-setuptools",
"mypy",
"bump-my-version",
"lxml-stubs",
]
[tool.interrogate]
ignore-init-method = true
ignore-init-module = false
ignore-magic = false
ignore-semiprivate = true
ignore-private = true
ignore-property-decorators = true
ignore-module = false
fail-under = 95
exclude = ["setup.py", "docs", "tests"]
verbose = 1
quiet = false
color = true
[tool.isort]
profile = "black"
skip_glob = ["docs/*", "docs/**/*.py"]
known_third_party = ["fastapi", "httpx", "lxml", "pydantic", "pydantic_core", "pydantic_settings", "pytest"]
line_length = 90
multi_line_output = 3
lines_after_imports = 2
lines_between_types = 1
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-v"
# only test the root level, otherwise it picks up the tests of the project template
testpaths = [
"tests",
]
[tool.coverage.run]
omit = [
"setup.py",
"erddapper/_version.py",
"erddapper/version.py",
"tests/*",
]
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-dir]
erddapper = "erddapper"
[tool.bumpversion]
current_version = "0.0.1"
commit = true
tag = true
[[tool.bumpversion.files]]
filename = "erddapper/__init__.py"
search = '__version__ = "{current_version}"'
replace = '__version__ = "{new_version}"'