-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
38 lines (34 loc) · 1.19 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
[tool.poetry]
name = "gridappsd-topology-processor"
version = "0.3.0"
description = ""
authors = [
"A. Anderson <[email protected]>",
"C. Allwardt <[email protected]>",
"A. Fisher <[email protected]>"
]
maintainers = [
"A. Anderson <[email protected]>",
"C. Allwardt <[email protected]>",
"A. Fisher <[email protected]>"
]
packages = [
{ include = "topology_processor"}
]
license = "BSD-3-Clause"
readme = "README.md"
homepage = "https://github.com/GRIDAPPSD/topology-processor"
repository = "https://github.com/GRIDAPPSD/topology-processor"
documentation = "https://github.com/GRIDAPPSD/topology-processor"
[tool.poetry.dependencies]
python = "^3.10"
#gridappsd-python = {version = "^2024.6.0", allow-prereleases = true}
#cim-topology = { git = "https://github.com/PNNL-CIM-Tools/CIM-Graph-Topology-Processor", branch = "cimgraph-refactor"}
cim-graph = "^0.1.8a0"
[tool.poetry.group.dev.dependencies]
mock = "^5.0.2"
pytest = "^7.3.1"
pre-commit = "^3.3.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"