-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
76 lines (61 loc) · 1.77 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "PySIMS"
authors = [
{ name="Anton Lydell", email="[email protected]" },
]
description = "The CLI for managing IoT sensors and meter data."
readme = "README.rst"
license = { file="LICENSE" }
requires-python = ">=3.11"
classifiers = [
"Development Status :: 1 - Planning",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Topic :: Home Automation",
"Topic :: Scientific/Engineering",
"Topic :: Utilities"
]
keywords = ["Sensors", "IoT", "LoRaWAN"]
dynamic = ["version"]
dependencies = [
"click >= 8.0",
"pandas >= 1.3",
"pandemy >= 1.1",
"pydantic >= 1.10",
"requests >= 2.26",
"toml >= 0.10"
]
[project.urls]
"Bug Tracker" = "https://github.com/antonlydell/PySIMS/issues"
"Documentation" = "https://github.com/antonlydell/PySIMS"
"Source Code" = "https://github.com/antonlydell/PySIMS"
[project.scripts]
pysims = "pysims.cli.main:main"
sims = "pysims.cli.main:main"
[tool.setuptools.dynamic]
version = {attr = "pysims.__version__"}
[tool.black]
line-length = 100
target-version = ["py38"]
skip-string-normalization = true
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-rsxX --showlocals --tb=short --strict-markers"
xfail_strict = true
testpaths = "tests"
markers = [
"raises: Tests that are expected to raise an exception.",
]
[tool.mypy]
plugins = ["pydantic.mypy"]
warn_return_any = true
warn_unreachable = true