-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
47 lines (40 loc) · 973 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
41
42
43
44
45
46
47
[build-system]
# Minimum requirements for the build system to execute.
requires = []
[tool.black]
line-length = 88
target_version = ['py310']
preview = true
exclude = '''
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.mypy_cache
| \.vscode
| build
| dist
)/
'''
[project]
name = "TypeEvalPy"
version = "0.0.1"
description = "TypeEvalPy: The Python Static Type Inference Framework"
readme = "README.md"
requires-python = "==3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
[project.urls]
"Homepage" = ""
"Bug Tracker" = ""
[tool.ruff]
# Never enforce `E501` (line length violations).
ignore = ["E501"]
# Ignore `E402` (import violations) in all `__init__.py` files
[tool.ruff.per-file-ignores]
"__init__.py" = ["E402"]
"path/to/file.py" = ["E402"]
[tool.isort]
profile = "black"