-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (31 loc) · 751 Bytes
/
pyproject.toml
File metadata and controls
35 lines (31 loc) · 751 Bytes
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
[tool.poetry]
name = "practise-python"
version = "0.1.0"
description = ""
authors = ["Gao Zheng <ba361006@gmail.com>"]
readme = "README.md"
packages = [{include = "practise_python"}]
[tool.poetry.dependencies]
python = ">=3.9,<3.10" # for pyside6
pydantic = "*"
fastapi = "*"
sqlalchemy = "*"
PySide6 = "*"
pytest = "*"
redis = "^4.3.4"
pynput = "*"
pyperclip = "*"
keyboard = "*"
cutelog = "*"
[tool.poetry.group.dev]
# optional = true indicates packages under the group.dev.dependencies
# will only be installed while calling `poetry install --with dev`
optional = false
[tool.poetry.group.dev.dependencies]
pylint = "*"
mypy = "*"
black = "*"
pre-commit = "*"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"