-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (38 loc) · 857 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
[tool.poetry]
name = "drudgeyer"
version = "0.1.0"
description = ""
authors = ["tokusumi <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/tokusumi/drudgeyer"
include = [
"LICENSE",
]
[tool.poetry.dependencies]
python = "^3.7"
typer = "^0.3.2"
uvicorn = "^0.13.4"
fastapi = "^0.63.0"
websockets = "^8.1"
[tool.poetry.dev-dependencies]
mypy = "^0.800"
flake8 = "^3.8.4"
black = "^20.8b1"
pytest = "^6.2.2"
isort = "^5.7.0"
pytest-cov = "^2.11.1"
autoflake = "^1.4"
pytest-asyncio = "^0.14.0"
pytest-timeout = "^1.4.2"
requests = "^2.25.1"
pytest-mock = "^3.5.1"
tqdm = "^4.59.0"
[tool.poetry.scripts]
drudgeyer = "drudgeyer.__init__:app"
[tool.isort]
profile = "black"
known_third_party = ["fastapi", "pydantic", "starlette"]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"