-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (64 loc) · 1.61 KB
/
Copy pathpyproject.toml
File metadata and controls
69 lines (64 loc) · 1.61 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "odse"
version = "0.8.2"
description = "Open Data Schema for Energy - validation and transformation library"
readme = "README.md"
license = {text = "Apache-2.0"}
authors = [{name = "Asoba Corporation", email = "support@asoba.co"}]
requires-python = ">=3.8"
keywords = ["energy", "solar", "iot", "data", "schema", "validation"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
]
dependencies = []
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"black>=23.0.0",
"ruff>=0.1.0",
"jsonschema>=4.0.0",
"lxml>=4.9.0",
]
parquet = [
"pandas>=1.5.0",
"pyarrow>=10.0.0",
]
dataframe = [
"pandas>=1.5.0",
]
mqtt = [
"paho-mqtt>=1.6.0",
]
opcua = [
"asyncua>=1.0.0",
]
scl = [
"lxml>=4.9.0",
]
ingest = [
"PyYAML>=6.0.0",
"jsonpath-ng>=1.5.0",
"paho-mqtt>=1.6.0",
"asyncua>=1.0.0",
]
[project.urls]
Homepage = "https://opendataschema.energy"
Documentation = "https://opendataschema.energy/docs/"
Repository = "https://github.com/AsobaCloud/odse"
[project.scripts]
odse = "odse.cli:main"
[tool.setuptools.packages.find]
where = ["."]