-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (34 loc) · 937 Bytes
/
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
[project]
version = "0.0.1"
name = "nice"
readme = "README.md"
authors = [ {name = "Sagi Kimhi", email = "[email protected]"} ]
maintainers = [{name = "Sagi Kimhi", email = "[email protected]"}]
description = """nice"""
dependencies = ["cocotb[bus]", "pyuvm", "pytest"]
requires-python = ">=3.11"
classifiers = ["Programming Language :: Python "]
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[tool.distutils.bdist_wheel]
universal = true
[project.optional-dependencies]
dev = ["mypy", "black", "flake8", "ruff", "pytest-cov"]
[tool.black]
line-length = 79
include = 'python/src'
target-version = ["py313"]
extend-exclude = '''(
.*/__pycache__/.*
| .venv
| .*/.*.egg-info
)'''
[tool.mypy]
pretty = true
strict = true
color_output = true
show_error_codes = true
warn_unreachable = true
python_version = "3.13"
files = ["python/src"]