-
Notifications
You must be signed in to change notification settings - Fork 230
Expand file tree
/
Copy pathpyproject.toml
More file actions
95 lines (91 loc) · 1.64 KB
/
pyproject.toml
File metadata and controls
95 lines (91 loc) · 1.64 KB
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
91
92
93
94
95
[project]
name = "reflex-web"
version = "0.0.1"
authors = [
{ name = "Nikhil Rao", email = "nikhil@reflex.dev" },
{ name = "Alek Petuskey", email = "alek@reflex.dev" },
]
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"email-validator",
"fastapi",
"flexdown",
"googletrans-py",
"mistletoe",
"openai",
"orjson",
"pandas",
"plotly-express",
"psycopg[binary]",
"python-frontmatter",
"reflex @ git+https://github.com/reflex-dev/reflex@main",
"reflex-docgen @ git+https://github.com/reflex-dev/reflex@main#subdirectory=packages/reflex-docgen",
"reflex-enterprise",
"reflex-hosting-cli",
"reflex-pyplot",
"reflex-ui @ git+https://github.com/reflex-dev/reflex-ui@main",
"requests",
"ruff-format",
"typesense",
]
[dependency-groups]
dev = [
"playwright",
"pre-commit",
"pytest-playwright",
"pytest",
"ruff",
"uvicorn",
]
[tool.setuptools.packages.find]
where = ["pcweb"]
[tool.ruff]
target-version = "py311"
output-format = "concise"
lint.isort.split-on-trailing-comma = false
lint.select = [
"ANN001",
"B",
"C4",
"D",
"E",
"ERA",
"F",
"FURB",
"I",
"N",
"PERF",
"PGH",
"RUF",
"SIM",
"T",
"TRY",
"W",
]
lint.ignore = [
"ANN001",
"B008",
"D100",
"D101",
"D102",
"D103",
"D104",
"D107",
"D205",
"E402",
"E501",
"ERA001",
"F403",
"RUF006",
"RUF008",
"RUF012",
"SIM115",
"T201",
"TRY0",
"TRY300",
]
lint.pydocstyle.convention = "google"
lint.allowed-confusables = ['’']
[tool.uv]
required-version = ">=0.7.0"