-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (55 loc) · 1.34 KB
/
pyproject.toml
File metadata and controls
64 lines (55 loc) · 1.34 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
[build-system]
requires = ["setuptools", "setuptools_scm", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pyindi"
dynamic = ["version"]
description = "Native python INDI driver library using asyncio."
readme = "README.rst"
license = {file = "licenses/LICENSE.rst"}
authors = [
{name = "TE Pickering"},
{name = "Scott Swindell", email = "sswindell@mmto.org"},
{name = "Dan Avner"},
]
requires-python = ">=3.12"
dependencies = [
"lxml",
"pillow",
"tornado",
]
[project.optional-dependencies]
test = ["pytest"]
docs = ["sphinx-astropy"]
[project.urls]
Homepage = "https://github.com/mmtobservatory/pyindi"
[tool.setuptools.packages.find]
where = ["."]
[tool.setuptools.package-data]
pyindi = ["data/*"]
[tool.setuptools_scm]
[tool.pytest.ini_options]
testpaths = ["pyindi", "docs"]
[tool.coverage.run]
omit = [
"pyindi/*setup_package*",
"pyindi/tests/*",
"pyindi/*/tests/*",
"pyindi/extern/*",
"pyindi/version*",
"*/pyindi/*setup_package*",
"*/pyindi/tests/*",
"*/pyindi/*/tests/*",
"*/pyindi/extern/*",
"*/pyindi/version*",
]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"except ImportError",
"raise AssertionError",
"raise NotImplementedError",
'def main\(.*\):',
"pragma: py{ignore_python_version}",
"def _ipython_key_completions_",
]