generated from DuckyMomo20012/python-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
65 lines (58 loc) · 1.32 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
[tool.poetry]
name = "email-remote-access"
version = "0.0.0"
description = "Control remote computers using email"
authors = ["Duong Vinh <tienvinh.duong4@gmail.com>"]
package-mode = false
[tool.poe.tasks]
dev = "python cli.py"
lint = "ruff check --fix"
pretty = "ruff format"
demo = "python assets/demo.py"
[tool.mypy]
python_version = "3.12"
ignore_missing_imports = true
[tool.ruff]
extend-include = ["*.ipynb"]
extend-exclude = ["pkg"]
[tool.ruff.lint]
select = [
# pycodestyle
"E",
# Pyflakes
"F",
# pyupgrade
"UP",
# flake8-bugbear
"B",
# flake8-simplify
"SIM",
# isort
"I",
]
[tool.poetry.dependencies]
python = "^3.12"
environs = "^9.5.0"
pillow = "^10.3.0"
psutil = "^5.9.4"
typer = "^0.12.3"
python-socketio = {extras = ["client"], version = "^5.8.0"}
fastapi = "^0.95.0"
uvicorn = {extras = ["standard"], version = "^0.21.1"}
seedir = {extras = ["emoji"], version = "^0.4.2"}
dearpygui = "^1.11.0"
google-api-python-client = "^2.136.0"
google-auth-httplib2 = "^0.2.0"
google-auth-oauthlib = "^1.2.0"
tabulate = "^0.9.0"
pywinctl = "^0.4"
numpy = "^2.0.0"
[tool.poetry.group.dev.dependencies]
poethepoet = "^0.26.1"
mypy = "^1.10.1"
pre-commit = "^3.7.1"
ruff = "^0.4.10"
types-tabulate = "^0.9.0.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"