forked from dabodev/dabo
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (45 loc) · 835 Bytes
/
pyproject.toml
File metadata and controls
49 lines (45 loc) · 835 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[tool.black]
line-length = 100
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| _build
| build
| dist
)/
| requirements.txt
# the root of the project
)
'''
[tool.uv]
dev-dependencies = [
"dabo",
]
[project]
name = "dabo"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"black>=24.10.0",
"ipython>=8.29.0",
"mock>=5.1.0",
"numpy>=2.1.3",
"pexpect>=4.9.0",
"pillow>=11.0.0",
"pluggy>=1.5.0",
"pudb>=2024.1.3",
"pymysql>=1.1.1",
"ruff>=0.7.4",
"six>=1.16.0",
"wxpython>=4.2.2",
]
[tool.uv.sources]
dabo = { workspace = true }