-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
56 lines (47 loc) · 1.01 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
[tool.poetry]
name = "acopoweropt"
version = "0.3.1"
description = "Ant Colony Power Systems Optimizer"
authors = ["Ettore Aquino <ettore@ettoreaquino.com>"]
readme = "README.md"
include = [
{ path = "tests", format = "sdist" }
]
exclude = ["Makefile","README.rst","systems.json","Notebook.ipynb","SystemSolver.ipynb"]
repository = "https://github.com/ettoreaquino/acopoweropt"
keywords = ["power systems", "optimization", "python", "ant-colony"]
[tool.poetry.dependencies]
python = "^3.8"
pandas = "^1.2.4"
cvxopt = "^1.2.6"
matplotlib = "^3.4.2"
seaborn = "^0.11.1"
PyQt5 = "^5.15.4"
imageio = "^2.9.0"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
jupyterlab = "^3.0.16"
pylint = "^2.8.3"
mypy = "^0.902"
black = "^21.6b0"
[tool.black]
line-length = 88
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| tests/.*/setup.py
)/
'''
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"