forked from vitsalis/PyCG
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (40 loc) · 1.38 KB
/
Copy pathpyproject.toml
File metadata and controls
48 lines (40 loc) · 1.38 KB
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
[project]
name = "onecode-pycg"
version = "1.2.1"
description = "PyCG - Practical Python Call Graphs"
readme = "README.md"
requires-python = ">=3.10,<3.15"
license = { file = "LICENCE" }
authors = [{ name = "Vitalis Salis", email = "vitsalis@gmail.com" }]
maintainers = [{ name = "DeepLime", email = "contact@deeplime.io" }]
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
[project.scripts]
pycg = "pycg.__main__:main"
[project.optional-dependencies]
dev = ["ruff>=0.8.0", "mock"]
[project.urls]
Homepage = "https://github.com/deeplime-io/PyCG"
"Bug Tracker" = "https://github.com/deeplime-io/PyCG/issues"
Repository = "https://github.com/deeplime-io/PyCG"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["pycg"]
[tool.ruff]
exclude = ["micro-benchmark", "micro-benchmark-key-errs"]
target-version = "py310"
[tool.ruff.lint]
# Do not enforce `E501` (line length violations) for now.
ignore = ["E501"]
# Ignore `E402` (import violations) in all `__init__.py` files
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["E402", "F401"]