-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
51 lines (47 loc) · 996 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[tool.poetry]
name = "evergarden"
version = "0.1.0"
description = "A ghostwriter Violet Evergarden for person who cannot write markdown"
authors = ["Doon"]
license = "BSD"
[tool.poetry.dependencies]
python = "^3.8.5"
fastapi = {extras = ["all"], version = "^0.65.1"}
mangum = "^0.11.0"
Markdown = "^3.3.4"
pymdown-extensions = "^8.2"
aioboto3 = "^8.3.0"
[tool.poetry.dev-dependencies]
pre-commit = "^2.12.1"
mypy = "^0.812"
pytest = "^6.2.4"
isort = "^5.8.0"
flake8 = "^3.9.2"
ipython = "^7.23.1"
pytest-cov = "^2.12.0"
black = "^21.5b1"
autoflake = "^1.4"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 119
target-version = ['py39']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| \.python-version
| _build
| buck-out
| build
| dist
)/
)
'''