forked from Huawei-CPLLab/PyDSL
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (43 loc) · 930 Bytes
/
pyproject.toml
File metadata and controls
50 lines (43 loc) · 930 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
50
[project]
name = "pydsl"
version = "0.0.1"
authors = [
{ name="Kevin Lee", email="k323lee@uwaterloo.ca" },
]
# description = "A small example package"
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"numpy",
"PyYAML"
]
[project.urls]
Homepage = "https://github.com/Huawei-CPLLab/PyDSL"
Issues = "https://github.com/Huawei-CPLLab/PyDSL/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[pytest]
testpaths = ["tests/"]
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]
pythonpath = [
"src", "tests",
]
[tool.ruff]
line-length = 79
indent-width = 4
exclude = ["llvm-project/**"]
[tool.ruff.format]
preview = true
quote-style = "double"
[tool.ruff.lint]
preview = true
extend-select = ["C901"]
ignore = ["T201", "N803", "N812", "PYI030", "F401"]