-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpyproject.toml
85 lines (77 loc) · 2.27 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
85
[build-system]
requires = [
"hatchling",
"versioningit",
]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "versioningit"
[tool.versioningit]
[tool.versioningit.write]
file = "opendssdirect/_version.py"
[tool.hatch.build]
artifacts = [
"opendssdirect/_version.py",
]
packages = ["opendssdirect"]
[project]
name = "opendssdirect.py"
dynamic = ["version"]
dependencies = [
"dss-python==0.15.7",
]
requires-python = ">=3.7"
authors = [
{name = "Dheepak Krishnamurthy", email = "[email protected]"},
{name = "Paulo Meira", email = "[email protected]"},
]
maintainers = [
{name = "Dheepak Krishnamurthy", email = "[email protected]"},
{name = "Paulo Meira", email = "[email protected]"},
]
description = "Python direct-mode interface to the alternative implementation of OpenDSS from DSS-Extensions.org"
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["opendss", "altdss", "electric power systems", "opendssdirect", "cffi"]
classifiers = [
'Intended Audience :: Science/Research',
'Intended Audience :: Education',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'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 :: Other/Proprietary License",
]
[project.urls]
Homepage = "https://github.com/dss-extensions/OpenDSSDirect.py"
Documentation = "https://dss-extensions.org/OpenDSSDirect.py"
Repository = "https://github.com/dss-extensions/OpenDSSDirect.py.git"
"Bug Tracker" = "https://github.com/dss-extensions/OpenDSSDirect.py/issues"
[project.optional-dependencies]
extras = [
"pandas",
"matplotlib",
"networkx",
"altdss",
"scipy",
]
[tool.hatch.envs.dev]
dependencies = [
"pytest",
"pytest-cov",
"sphinx-rtd-theme",
"nbsphinx",
"black",
"pre-commit",
]
post-install-commands = [
"hatch run dev:pre-commit install",
]