Skip to content

Commit

Permalink
minor update
Browse files Browse the repository at this point in the history
  • Loading branch information
AadilLatif committed Mar 22, 2024
1 parent 365ae50 commit ae021a1
Show file tree
Hide file tree
Showing 4 changed files with 76 additions and 108 deletions.
2 changes: 1 addition & 1 deletion PyDSS/__init__.py
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
Expand Down
75 changes: 75 additions & 0 deletions pyproject.toml
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"]
22 changes: 0 additions & 22 deletions requirements.txt

This file was deleted.

85 changes: 0 additions & 85 deletions setup.py

This file was deleted.

0 comments on commit ae021a1

Please sign in to comment.