-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (35 loc) · 739 Bytes
/
pyproject.toml
File metadata and controls
42 lines (35 loc) · 739 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
[project]
name = "estrapy"
version = "2.0.1"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"colorlog>=6.9.0",
"inquirer>=3.4.1",
"lark>=1.3.0",
"mashumaro>=3.17",
"matplotlib>=3.10.7",
"numba>=0.62.1",
"pandas>=2.3.3",
"pyyaml>=6.0.3",
"scipy>=1.16.2",
"seaborn>=0.13.2",
"tqdm>=4.67.1",
]
[tool.setuptools.package-data]
estrapy = ["core/grammar/*.lark"]
[tool.ruff]
line-length = 120
[tool.ruff.format]
quote-style = "single"
docstring-code-format = true
[dependency-groups]
dev = [
"pytest>=9.0.1",
]
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests"]
[project.scripts]
estrapy = "estrapy:estrapy.main"