-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
90 lines (77 loc) · 2.24 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
90
[tool.poetry]
name = "profyle"
version = "0.3.0"
description = "Profyle, a development tool for analysing and managing python traces"
authors = ["Carlos Valdivia <[email protected]>"]
maintainers = [
"Carlos Valdivia <[email protected]>"
]
repository = "https://github.com/vpcarlos/profyle"
keywords = ["cprofile","devtool", "perffeto", "profyle", "viztracer","fastapi","flask"]
classifiers = [
"Framework :: FastAPI",
"Framework :: Flask",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python",
"Topic :: Internet",
"Topic :: Software Development :: Debuggers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development",
"Typing :: Typed",
"Environment :: Web Environment",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
license = "MIT"
readme = "README.md"
[tool.poetry.scripts]
profyle = "profyle.main:app"
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
jinja2 = "^3.1.2"
uvicorn = ">=0.20.0"
typer = {extras = ["all"], version = "^0.7.0"}
viztracer = "^0.16.0"
fastapi = ">=0.70.0"
pydantic-settings = "^2.0.3"
[tool.poetry.group.dev.dependencies]
autopep8 = "^2.0.1"
pytest = "^7.2.1"
httpx = "^0.23.3"
flask = "^2.0.0"
pytest-asyncio = "^0.21.1"
ruff = "^0.1.5"
[tool.poetry.group.flask.dependencies]
flask = "^2.0.0"
[tool.poetry.group.django.dependencies]
django = "^4.2.7"
[tool.ruff]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"C", # flake8-comprehensions
"B", # flake8-bugbear
"UP",
]
ignore = [
# Avoid trying to fix flake8-bugbear (`B`) violations.
"B",
"E731",
]
fix = true
unfixable = []
line-length = 100
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"