-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpyproject.toml
73 lines (66 loc) · 1.38 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "NREL-pydss"
version = "3.1.7"
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 = [
"click",
"h5py",
"helics",
"loguru",
"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",
]
server = [
"aiohttp_swagger3>=0.4.3",
"aiohttp",
]
[project.scripts]
pydss = "pydss.cli.pydss:cli"
[project.urls]
Homepage = "http://www.github.com/nrel/pydss"
[tool.hatch.build.targets.sdist]
include = [
"src/pydss",
]
[tool.hatch.build.targets.wheel]
packages = ["src/pydss"]