-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
37 lines (31 loc) · 880 Bytes
/
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
[tool.poetry]
name = "dssdata"
version = "0.2.0"
description = "Organizing OpenDSS data"
authors = ["Felipe M. S. Monteiro <[email protected]>"]
license = "MIT"
readme = "README.md"
documentation = "https://felipemarkson.github.io/dssdata/"
repository = "https://github.com/felipemarkson/dssdata"
classifiers = [
"Development Status :: 4 - Beta",
"Topic :: Software Development :: Libraries :: Python Modules",
"Intended Audience :: Science/Research",
]
[tool.poetry.dependencies]
python = "^3.9"
"OpenDSSDirect.py" = "0.8.*"
pandas = "1.*"
[tool.poetry.dev-dependencies]
flake8 = "*"
black = "*"
matplotlib = "*"
notebook = "*"
mkdocs-material = "9.*"
mkdocstrings = {version = "0.20.*", extras = ["python"]}
mkdocs-jupyter = "0.24.*"
mkdocs-autorefs = "0.4.*"
Pygments = "2.*"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"