-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpyproject.toml
More file actions
82 lines (73 loc) · 1.91 KB
/
Copy pathpyproject.toml
File metadata and controls
82 lines (73 loc) · 1.91 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
70
71
72
73
74
75
76
77
78
79
80
81
82
[project]
name = "cim-graph"
version = "0.5.0a11"
description = "CIM Graph"
authors = [
{name = "A. Anderson", email = "19935503+AAndersn@users.noreply.github.com"},
{name = "C. Allwardt", email = "3979063+craig8@users.noreply.github.com"}
]
readme = "README.md"
requires-python = ">=3.10,<4.0"
license = {text = "BSD-3-Clause"}
keywords = ["cim", "power-systems", "graph", "knowledge-graph"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"defusedxml>=0.7.1",
"SPARQLWrapper>=2.0.0",
"neo4j>=5.10.0",
"rdflib>=7.0.0",
"oxrdflib>=0.3.6",
"mysql-connector-python>=9.2.0",
"gridappsd-python>=2026.2.1",
"nest-asyncio>=1.5.8",
"mermaid-python>=0.1",
"pint>=0.24.4",
]
[project.optional-dependencies]
dev = [
"pytest>=8.3.5",
"pre-commit>=2.17.0",
"graphviz>=0.19.1",
"ipykernel>=6.27.1",
]
[project.urls]
Homepage = "https://github.com/PNNL-CIM-Tools/CIM-Graph"
Documentation = "https://pnnl-cim-tools.github.io/CIM-Graph/"
Repository = "https://github.com/PNNL-CIM-Tools/CIM-Graph"
Issues = "https://github.com/PNNL-CIM-Tools/CIM-Graph/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["cimgraph"]
[tool.hatch.build.targets.sdist]
include = [
"/cimgraph",
"README.md",
"LICENSE",
]
[tool.yapfignore]
ignore_patterns = [
".venv/**",
".pytest_cache/**",
"dist/**",
"docs/**",
"docker/**",
"cimgraph/data_profile/**",
"!*.py"
]
[tool.yapf]
based_on_style = "pep8"
spaces_before_comment = 4
column_limit = 99
split_before_logical_operator = true
[tool.isort]
line_length = 99