-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (52 loc) · 1.4 KB
/
pyproject.toml
File metadata and controls
58 lines (52 loc) · 1.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
[tool.poetry]
name = "alpyca"
version = "3.1.2"
description = "API library for all ASCOM Alpaca devices, management, and discovery"
authors = ["Robert B. Denny <rdenny@dc3.com>"]
license = "LICENSE"
readme = "README.md"
documentation = "https://ascom-standards.org/alpyca/index.html"
repository = "https://github.com/ASCOMInitiative/alpyca"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Astronomy"
]
packages = [
{include = "alpaca"}
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/ASCOMInitiative/alpyca/issues"
"ASCOM Initiative" = "https://ascom-standards.org/"
"ASCOM Developer Forum" = "https://ascomtalk.groups.io/g/Developer/"
[tool.poetry.dependencies]
python = "^3.9"
requests = "^2.32.5"
typing-extensions = "^4.15.0"
python-dateutil = "^2.8.2"
enum-tools = "^0.12.0"
ifaddr = "^0.2.0"
[tool.poetry.group.test.dependencies]
pytest = "^7.1.2"
pytz = "^2022.1"
[tool.pytest.ini_options]
minversion = "7.0"
addopts = "--setupshow -rA"
testpaths = [
"PyTest"
]
[tool.rstcheck]
ignore_directives = [
"autoclass",
"automodule",
"autofunction",
"autoenum"
]
ignore_messages = [
"Hyperlink target .* is not referenced"
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"