-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (44 loc) · 1.37 KB
/
pyproject.toml
File metadata and controls
49 lines (44 loc) · 1.37 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
47
48
49
[build-system]
requires = [
"setuptools>=61.0,<75.0",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
name = "sttpapi"
version = "0.7.5"
description = "Streaming Telemetry Transport Protocol API"
readme = "README.md"
keywords = ["STTP", "IEEE 2664", "streaming", "telemetry", "time-series", "protocol", "synchrophasor", "point-on-wave", "data exchange"]
license = {text = "MIT"}
authors = [
{name = "J. Ritchie Carroll", email = "rcarroll@gridprotectionalliance.org"}
]
requires-python = ">=3.10"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator",
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent",
]
dependencies = [
"numpy>=2.0.0",
"pycryptodome>=3.15.0",
"python-dateutil>=2.8.2",
"antlr4-python3-runtime>=4.13",
]
[project.urls]
Homepage = "https://github.com/sttp/pyapi"
Documentation = "https://sttp.github.io/pyapi/"
"Bug Tracker" = "https://github.com/sttp/pyapi/issues"
"Source Code" = "https://github.com/sttp/pyapi"
Download = "https://pypi.org/project/sttpapi/"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"sttp" = ["*.xml"]
"sttp.transport" = ["*.xml"]