-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
59 lines (51 loc) · 1.32 KB
/
pyproject.toml
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
[tool.poetry]
name = "pyobs-allsky-cloudcover"
version = "1.2.1"
description = "Allsky Cloudcover Analyser"
authors = ["germanhydrogen <[email protected]>"]
readme = "Readme.md"
packages = [{include = "pyobs_cloudcover"}]
[tool.poetry.dependencies]
python = ">=3.11,<3.12"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
pytest-cov = "^4.1.0"
pytest-mock = "^3.11.1"
pytest-asyncio = "^0.21.1"
pytest-aiohttp = "^1.0.5"
mypy = "1.9.0"
[tool.mypy]
ignore_missing_imports = true
strict = true
disallow_subclassing_any = false
[build-system]
requires = ["maturin>=1.5,<2.0"]
build-backend = "maturin"
[project]
name = "pyobs-allsky-cloudcover"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dynamic = ["version"]
dependencies = [
"pyobs-core[full]>=1.13.4",
"influxdb-client>=1.42.0",
"opencv-python>= 4.8.0.76"
]
[project.optional-dependencies]
test = [
"pytest>=7.4.0",
"pytest-cov>=4.1.0",
"pytest-mock>=3.11.1",
"pytest-asyncio>=0.21.1",
"pytest-aiohttp>=1.0.5",
"mypy>=1.9.0",
"testcontainers[influxdb]>=4.7.1",
"matplotlib"
]
[tool.maturin]
features = ["pyo3/extension-module"]
python-packages = ["pyobs_cloudcover"]