-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (29 loc) · 794 Bytes
/
Copy pathpyproject.toml
File metadata and controls
33 lines (29 loc) · 794 Bytes
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
[project]
name = "consys4py"
version = "0.0.1-beta.3"
#dynamic = ["version"]
authors = [{ name = "Ian Patterson", email = "ian@botts-inc.com" }]
description = "OGC Connected Systems API client for Python"
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Operating System :: OS Independent"
]
requires-python = ">=3.10, <4.0"
#[tool.setuptools.dynamic]
#version = { use_scm_version = { version_scheme = "post-release" } }
dependencies = [
"pydantic>=2.7.4",
"requests>=2.26.0",
"paho-mqtt>=2.1.0"
]
[dependency-groups]
dev = [
"pytest>=8.2.2",
"sphinx>=7.3.7",
"flake8>=7.1.0",
"sphinx-rtd-theme>=2.0.0"
]
[tool.setuptools]
package-dir = { "" = "src" }