forked from mzy2240/ESA
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
131 lines (121 loc) · 2.87 KB
/
pyproject.toml
File metadata and controls
131 lines (121 loc) · 2.87 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "esapp"
dynamic = ["version"]
description = "ESA++ is an open-source power-grid toolkit."
readme = "README.rst"
requires-python = ">=3.7"
license = {text = "Apache License 2.0"}
authors = [
{name = "Adam Birchfield", email = "abirchfield@tamu.edu"},
{name = "Luke Lowery", email = "wyattluke.lowery@tamu.edu"}
]
keywords = [
"Python",
"PowerWorld",
"PowerWorld Simulator",
"Simulator",
"PowerWorld Simulation Automation Server",
"SimAuto",
"Automation",
"Power Systems",
"Electric Power",
"Power",
"Easy SimAuto",
"ESA",
"ESAplus",
"Smart Grid",
]
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: Apache Software License",
"Operating System :: Microsoft :: Windows",
"Development Status :: 5 - Production/Stable",
"Environment :: Win32 (MS Windows)",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Topic :: Education",
"Topic :: Scientific/Engineering",
"Topic :: Software Development",
]
dependencies = [
"pandas",
"numpy<2.0",
"scipy",
"pywin32; sys_platform == 'win32'",
"geopandas",
"matplotlib"
]
[project.optional-dependencies]
test = [
"pytest>=7.0",
"pytest-cov>=4.0",
"pytest-xdist>=3.0",
"pytest-timeout>=2.1",
"pytest-mock>=3.10",
"pytest-order>=1.2"
]
dev = [
"matplotlib",
"pytest>=7.0",
"pytest-cov>=4.0",
"pytest-order>=1.2"
]
docs = [
"sphinx",
"sphinx-rtd-theme",
"sphinx-copybutton",
"nbsphinx",
"ipykernel",
"matplotlib"
]
[project.urls]
Homepage = "https://github.com/lukelowry/ESApp"
[tool.setuptools]
packages = {find = {}}
include-package-data = true
zip-safe = false
[tool.setuptools.package-data]
esapp = ["py.typed", "utils/shapes/**/*"]
[tool.setuptools.dynamic]
version = {file = "VERSION"}
[tool.coverage.run]
source = ["esapp"]
branch = true
parallel = true
omit = [
"*/tests/*",
"*/dev/*",
"*/__pycache__/*",
"esapp/components/grid.py",
"esapp/components/generate_components.py",
"*/examples/*"
]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"def __repr__",
"raise NotImplementedError",
"if TYPE_CHECKING:",
"if __name__ == .__main__.:",
"@abstractmethod",
"raise AssertionError",
"raise RuntimeError"
]
show_missing = true
precision = 2
fail_under = 0
skip_empty = true
[tool.coverage.html]
directory = "htmlcov"
title = "ESApp Coverage Report"
[tool.coverage.xml]
output = "coverage.xml"