forked from caheredia/caiso_connector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
63 lines (57 loc) · 1.14 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
[tool.poetry]
name = "caiso_connector"
version = "0.1.0"
description = ""
authors = ["Your Name <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.7"
requests = "2.22.0"
pytest = "5.3.2"
numpy = "1.18.0"
fastapi = "^0.45.0"
uvicorn = "^0.11.1"
flake8 = "^3.8.3"
isort = "^4.3.21"
pytest-cov = "^2.10.0"
codecov = "^2.1.7"
black = "^19.10b0"
pandas = "^1.0.5"
flake8-bandit = "^2.1.2"
sqlalchemy = "^1.3.18"
[tool.poetry.dev-dependencies]
jupyter = "^1.0"
altair = "^4.0"
vega_datasets = "^0.8.0"
vega = "=1.3"
sphinx = "^2.3"
sphinx_rtd_theme = "^0.4.3"
recommonmark = "^0.6.0"
pynvim = "^0.4.1"
coverage = "^5.1"
jedi = "0.17"
[tool.black]
line-length = 88
target-version = ['py37']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| docs
)/
| foo.py # also separately exclude a file named foo.py in
# the root of the project
)
'''
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"