-
Notifications
You must be signed in to change notification settings - Fork 104
/
pyproject.toml
43 lines (37 loc) · 1.16 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
[project]
name = "BAC0"
version = "2024.09.20"
description = "BACnet Scripting Framework for testing DDC Controls"
authors = [{name = "Christian Tremblay", email = "[email protected]"}]
readme = "README.md"
keywords = ["bacnet", "building", "automation", "test"]
dependencies=["BACpypes3", "colorama", "python-dotenv", "pytz", "aiosqlite"]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project.urls]
Homepage = "https://github.com/ChristianTremblay/BAC0"
[project.optional-dependencies]
extras = ["pandas", "influxdb_client[async]", "rich", "pytest-asyncio", "coverage"]
[tool.setuptools.package-data]
"BAC0.core.app" = ["device.json"]
[tool.setuptools.packages.find]
include = [
"BAC0",
"BAC0.core",
"BAC0.core.app",
"BAC0.core.app/device.json",
"BAC0.core.io",
"BAC0.core.functions",
"BAC0.core.devices",
"BAC0.core.devices.local",
"BAC0.core.devices.mixins",
"BAC0.core.proprietary_objects",
"BAC0.core.utils",
"BAC0.db",
"BAC0.scripts",
"BAC0.tasks",
"BAC0.tools"]
namespaces = false
[tool.pytest.ini_options]
asyncio_default_fixture_loop_scope = "session"