-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
42 lines (37 loc) · 1.11 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
[tool.poetry]
name = "simplestapi"
version = "0.1.5"
description = "SimpleAPI is a minimalistic, unopinionated web framework for Python, inspired by FastAPI & Flask"
authors = ["Adham Salama <[email protected]>"]
license = "MIT"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
packages = [
{include = "simpleapi"}
]
homepage = "https://adhamsalama.github.io/simpleapi"
repository = "https://github.com/adhamsalama/simpleapi"
readme = "README.md"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/adhamsalama/simpleapi/issues"
[tool.poetry.dependencies]
python = "^3.10"
pydantic = "^1.9.2"
[tool.poetry.dev-dependencies]
pytest = "^7.1.2"
requests = "^2.28.1"
mypy = "^0.971"
types-requests = "^2.28.8"
gunicorn = "^20.1.0"
mkdocs-material = "^8.4.1"
yasta = "^0.1.3"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[yasta-tasks]
typecheck = "mypy ."
test = "gunicorn tests.app:app & pytest tests/test.py && kill -9 $(lsof -t -i:8000)"
fulltest = ["typecheck", "test"]