-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (41 loc) · 1.27 KB
/
pyproject.toml
File metadata and controls
46 lines (41 loc) · 1.27 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
# pyproject.toml
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pybog"
version = "0.1.6"
description = "A Python toolkit for programmatically generating Tridium Niagara .bog files for HVAC controls."
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.8"
license = { text = "MIT" }
authors = [
{ name = "Ben Bartling", email = "ben.bartling@gmail.com" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Build Tools",
"Topic :: System :: Hardware :: Universal Serial Bus (USB)",
]
# Core dependencies for the library to function
dependencies = [
"pydantic"
]
[project.optional-dependencies]
# Dependencies for development, testing, and analysis
dev = [
"pytest",
"black",
"matplotlib",
"pydantic"
]
[project.urls]
Homepage = "https://github.com/bbartling/pybog"
Repository = "https://github.com/bbartling/pybog"
"YouTube Channel" = "https://www.youtube.com/@TalkShopWithBen"