-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
84 lines (77 loc) · 2.32 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
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
[build-system]
requires = [
"hatchling",
"versioningit",
]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "versioningit"
[tool.versioningit]
[tool.versioningit.write]
file = "dss/_version.py"
[tool.hatch.build]
artifacts = [
"dss/_version.py",
"dss/messages/*.mo",
]
packages = ["dss"]
[project]
name = "dss-python"
dynamic = ["version"]
dependencies = [
"dss_python_backend==0.14.6a1",
"numpy>=1.21.0",
"typing_extensions>=4.5,<5",
]
requires-python = ">=3.7"
authors = [
{name = "Paulo Meira", email = "pmeira@ieee.org"},
{name = "Dheepak Krishnamurthy", email = "me@kdheepak.com"},
]
maintainers = [
{name = "Paulo Meira", email = "pmeira@ieee.org"},
]
description = "Python interface (bindings and tools) for OpenDSS. Based on the AltDSS/DSS C-API project, the alternative OpenDSS implementation from DSS-Extensions.org. Multiplatform, API-compatible/drop-in replacement for the COM version of OpenDSS."
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["opendss", "altdss", "electric power systems", "opendssdirect", "powerflow", "short-circuit", ]
classifiers = [
'Intended Audience :: Science/Research',
'Intended Audience :: Education',
'Programming Language :: Python :: 3.7',
'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',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Development Status :: 5 - Production/Stable',
'Topic :: Scientific/Engineering',
'License :: OSI Approved :: BSD License'
]
[project.urls]
Homepage = "https://github.com/dss-extensions/DSS-Python"
Documentation = "https://dss-extensions.org/DSS-Python"
Repository = "https://github.com/dss-extensions/DSS-Python.git"
"Bug Tracker" = "https://github.com/dss-extensions/DSS-Python/issues"
Changelog = "https://github.com/dss-extensions/DSS-Python/blob/main/docs/changelog.md"
[project.optional-dependencies]
test = [
"ruff",
"xmldiff",
"pytest",
"scipy",
"pandas",
]
plot = [
"matplotlib",
"scipy",
]
all = [
"matplotlib",
"scipy",
"opendssdirect-py[extras]",
"altdss",
"pandas",
]