-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
64 lines (58 loc) · 1.81 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
[build-system]
requires = ["setuptools>=42", "wheel", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[project]
name = "py-dss-interface"
version = "2.0.4"
description = "Python interface for controlling OpenDSS."
readme = "README.rst"
license = {text = "MIT"}
authors = [
{name = "Paulo Radatz", email = "[email protected]"},
{name = "Ênio Viana", email = "[email protected]"},
{name = "Rodolfo Londero", email = "[email protected]"}
]
dependencies = [
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
"sphinx-rtd-theme",
"nbsphinx",
"black",
"pre-commit",
"tox",
"twine",
"ipython",
"flake8"
]
[project.urls]
"Documentation" = "https://py_dss_interface.readthedocs.io/"
"Changelog" = "https://py_dss_interface.readthedocs.io/en/latest/changelog.html"
"Issue Tracker" = "https://github.com/PauloRadatz/py_dss_interface/issues"
"Source" = "https://github.com/PauloRadatz/py_dss_interface"
[tool.setuptools]
packages = { find = {where = ["src"]} }
[tool.setuptools.package-data]
"py_dss_interface" = ["opendss_official/**/*",
"opendss_official/windows/delphi/x64/*.dll",
"opendss_official/windows/delphi/x86/*.dll",
"opendss_official/windows/cpp/x64/*.dll",
"opendss_official/windows/cpp/x86/*.dll",
"opendss_official/linux/cpp/*.so"
]