-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (51 loc) · 2.29 KB
/
pyproject.toml
File metadata and controls
65 lines (51 loc) · 2.29 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[project]
name = "dirty-waters"
version = "0.104.0"
description = "Automatically detect software supply chain smells and issues"
readme = "README.md"
requires-python = ">=3.12"
keywords = [ "software supply chain", "ssc", "dependencies", "npm",]
classifiers = [ "Intended Audience :: Developers", "Topic :: Software Development :: Build Tools", "Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent",]
dependencies = [ "attrs ==25.4.0", "cattrs ==24.1.3", "certifi ==2025.11.12", "charset-normalizer ==3.4.4", "exceptiongroup ==1.3.1", "GitPython ==3.1.45", "idna ==3.11", "markdown-it-py ==4.0.0", "numpy ==2.4.0", "pandas ==2.3.3", "platformdirs ==4.5.1", "PyGithub ==2.8.1", "pytest ==8.4.2", "python-dateutil == 2.9.0.post0", "pytz ==2025.2", "PyYAML ==6.0.3", "requests ==2.32.5", "requests-cache == 1.2.1", "six ==1.17.0", "tabulate == 0.9.0", "tqdm ==4.67.1", "typing_extensions ==4.15.0", "tzdata ==2025.3", "url-normalize ==2.2.1", "urllib3 ==2.6.2", "xmltodict ==0.15.1",]
[[project.authors]]
name = "Raphina Liu"
email = "raphina@kth.se"
[[project.authors]]
name = "Diogo Gaspar"
email = "dgaspar@kth.se"
[[project.authors]]
name = "Martin Monperrus"
email = "monperrus@kth.se"
[build-system]
requires = [ "setuptools",]
build-backend = "setuptools.build_meta"
[project.license]
text = "MIT"
[project.urls]
Homepage = "https://github.com/chains-project/dirty-waters"
"Bug Tracker" = "https://github.com/chains-project/dirty-waters/issues"
[project.scripts]
dirty-waters = "tool.main:main"
[tool.black]
line-length = 119
include = "\\.pyi?$"
[tool.ruff]
line-length = 119
exclude = [ ".bzr", ".direnv", ".eggs", ".git", ".git-rewrite", ".hg", ".mypy_cache", ".nox", ".pants.d", ".pytype", ".ruff_cache", ".svn", ".tox", ".venv", "__pypackages__", "_build", "buck-out", "build", "dist", "node_modules", "venv",]
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
target-version = "py310"
[tool.setuptools]
packages = [ "tool",]
[tool.ruff.lint]
ignore = [ "C901", "E501", "E741",]
select = [ "C", "E", "F", "I", "W",]
fixable = [ "ALL",]
unfixable = []
[tool.ruff.flake8-quotes]
docstring-quotes = "double"
[tool.setuptools.package-dir]
"" = "."
[tool.ruff.lint.mccabe]
max-complexity = 10
[tool.ruff.lint.isort]
known-first-party = [ "tool",]