forked from PythonNest/PyNest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
89 lines (74 loc) · 1.75 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
[tool.poetry]
name = "pynest-api"
version = "0.1.0"
description = "PyNest is a FastAPI Abstraction for building microservices, influenced by NestJS."
authors = []
license = "MIT"
readme = "README.md"
packages = [ { include = "nest" } ]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
repository = "https://github.com/PythonNest/PyNest"
documentation = "https://pythonnest.github.io/PyNest/"
[tool.poetry.dependencies]
python = "^3.8"
click = "==8.1.6"
fastapi = "==0.95.1"
python-dotenv = "==1.0.0"
SQLAlchemy = "==2.0.19"
uvicorn = "==0.23.1"
[tool.poetry.group.test]
optional = true
[tool.poetry.group.test.dependencies]
pytest = "*"
motor = "==3.2.0"
beanie = "==1.20.0"
[tool.poetry.group.lint]
optional = true
[tool.poetry.group.lint.dependencies]
black = "==23.1.0"
[tool.poetry.group.codespell]
optional = true
[tool.poetry.group.codespell.dependencies]
codespell = "^2.2.0"
[tool.poetry.group.typing]
optional = true
[tool.poetry.group.typing.dependencies]
mypy = "^0.991"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
mkdocstrings-python = "*"
mkdocs-material = "*"
[tool.poetry.scripts]
pynest = "nest.cli.cli:nest_cli"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tools.black]
force-exclude = '''
/(
| /*venv*
| /.git
| /dist
| /pytest_compare.egg-info
| *.bac
| .mypy_cache
| .coverage
| /htmlcov
| /docs
| /site
)/
'''
[tool.mypy]
exclude = [
"/*venv*"
]
ignore_missing_imports = true