-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpyproject.toml
More file actions
112 lines (101 loc) · 2.4 KB
/
pyproject.toml
File metadata and controls
112 lines (101 loc) · 2.4 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
107
108
109
110
111
112
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "waterfurnace"
version = "1.6.4"
description = "Python interface for waterfurnace geothermal systems"
readme = "README.md"
requires-python = ">=3.10"
license = "Apache-2.0"
license-files = ["LICENSE"]
authors = [
{name = "Sean Dague", email = "sean@dague.net"}
]
keywords = ["waterfurnace", "geothermal", "symphony", "geostar"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dependencies = [
"Click>=8.0",
"requests>=2.28",
"websocket-client>=1.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-cov>=4.0",
"black>=23.0",
"tox>=4.0",
"watchdog>=0.8.3",
"Sphinx>=7.0",
"PyYAML>=6.0",
]
test = [
"pytest>=7.0",
"pytest-cov>=4.0",
]
[project.urls]
Homepage = "https://github.com/sdague/waterfurnace"
Documentation = "https://waterfurnace.readthedocs.io"
Repository = "https://github.com/sdague/waterfurnace"
"Bug Tracker" = "https://github.com/sdague/waterfurnace/issues"
Changelog = "https://github.com/sdague/waterfurnace/blob/main/CHANGELOG.md"
[project.scripts]
waterfurnace = "waterfurnace.cli:main"
[tool.setuptools]
packages = ["waterfurnace"]
[tool.setuptools.package-data]
waterfurnace = ["py.typed"]
[tool.black]
line-length = 88
target-version = ['py310', 'py311', 'py312', 'py313', 'py314']
include = '\.pyi?$'
extend-exclude = '''
/(
# directories
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| build
| dist
)/
'''
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = [
"--strict-markers",
"--strict-config",
"-ra",
]
[tool.coverage.run]
source = ["waterfurnace"]
branch = true
omit = [
"*/tests/*",
"*/test_*.py",
]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"def __repr__",
"raise AssertionError",
"raise NotImplementedError",
"if __name__ == .__main__.:",
"if TYPE_CHECKING:",
"@abstractmethod",
]