-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
365ae50
commit ae021a1
Showing
4 changed files
with
76 additions
and
108 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
__version__ = "3.1.0" | ||
__version__ = "3.1.1" | ||
|
||
|
||
from PyDSS.utils.timing_utils import timer_stats_collector | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
[build-system] | ||
requires = ["hatchling"] | ||
build-backend = "hatchling.build" | ||
|
||
[project] | ||
name = "dsspy" | ||
dynamic = ["version"] | ||
description = "A high-level python interface for OpenDSS" | ||
readme = "README.md" | ||
license = "BSD-3-Clause" | ||
requires-python = ">=3.9" | ||
authors = [ | ||
{ name = "Aadil Latif", email = "[email protected]" }, | ||
] | ||
classifiers = [ | ||
"Development Status :: 4 - Beta", | ||
"Environment :: Console", | ||
"Environment :: Web Environment", | ||
"Intended Audience :: Developers", | ||
"Intended Audience :: Science/Research", | ||
"License :: OSI Approved :: BSD License", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python :: 3", | ||
] | ||
dependencies = [ | ||
"aiohttp_swagger3>=0.4.3", | ||
"aiohttp", | ||
"bokeh", | ||
"click", | ||
"h5py", | ||
"helics", | ||
"loguru", | ||
"matplotlib", | ||
"networkx", | ||
"numpy", | ||
"OpenDSSDirect.py==0.8.4", | ||
"pandas", | ||
"pvder", | ||
"pydantic~=2.5.2", | ||
"pymongo", | ||
"requests", | ||
"scikit-learn", | ||
"scipy", | ||
"Shapely", | ||
"tables", | ||
"terminaltables", | ||
"toml", | ||
] | ||
|
||
[project.optional-dependencies] | ||
dev = [ | ||
"mock", | ||
"pytest", | ||
"pytest-cov", | ||
"setuptools", | ||
"sphinx", | ||
"sphinx-rtd-theme", | ||
] | ||
|
||
[project.scripts] | ||
pydss = "PyDSS.cli.pydss:cli" | ||
|
||
[project.urls] | ||
Homepage = "http://www.github.com/nrel/pydss" | ||
|
||
[tool.hatch.version] | ||
path = "pydss/__init__.py" | ||
|
||
[tool.hatch.build.targets.sdist] | ||
include = [ | ||
"/pydss", | ||
] | ||
|
||
[tool.hatch.build.targets.wheel] | ||
packages = ["pydss"] |
This file was deleted.
Oops, something went wrong.