-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
112 lines (99 loc) · 2.74 KB
/
pyproject.toml
File metadata and controls
112 lines (99 loc) · 2.74 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "src2purl"
version = "1.3.4"
description = "Source to PURL - Identify package coordinates and PURLs from source code using UPMEX and multiple discovery strategies"
readme = "README.md"
requires-python = ">=3.9"
license = {text = "AGPL-3.0"}
authors = [
{name = "Oscar Valenzuela B.", email = "oscar.valenzuela.b@gmail.com"}
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Version Control",
]
dependencies = [
"aiohttp>=3.9.0",
"click>=8.1.0",
"rich>=13.0.0",
"pydantic>=2.0.0",
"tabulate>=0.9.0",
"upmex>=1.6.7",
]
[project.urls]
"Homepage" = "https://github.com/SemClone/src2purl"
"Bug Tracker" = "https://github.com/SemClone/src2purl/issues"
"Source Code" = "https://github.com/SemClone/src2purl"
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"pytest-asyncio>=0.21.0",
"pytest-cov>=4.1.0",
"pytest-mock>=3.11.0",
"black>=23.0.0",
"ruff>=0.1.0",
"mypy>=1.5.0",
"pre-commit>=3.4.0",
]
swhid = [
"miniswhid>=0.1.0",
"swh.model>=6.0.0",
"swh.web>=1.0.0",
]
enhanced = [
"osslili>=1.3.3",
]
[project.scripts]
src2purl = "src2id.cli.main:main"
src2purl-validate = "src2id.cli.validate:validate_swhid"
[tool.setuptools.packages.find]
where = ["."]
include = ["src2id*"]
[tool.black]
line-length = 100
target-version = ['py39']
[tool.ruff]
line-length = 100
select = ["E", "F", "W", "C90", "I", "N", "UP", "B", "A", "C4", "PT", "SIM", "RUF"]
ignore = ["E501", "B008"]
target-version = "py39"
[tool.mypy]
python_version = "3.9"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
disallow_any_unimported = false
no_implicit_optional = true
check_untyped_defs = true
warn_redundant_casts = true
warn_unused_ignores = true
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
addopts = "-v --cov=src2id --cov-report=term-missing"
markers = [
"integration: mark test as an integration test"
]
[tool.coverage.run]
source = ["src2id"]
omit = ["tests/*", "*/migrations/*", "*/__init__.py"]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"def __repr__",
"raise AssertionError",
"raise NotImplementedError",
"if __name__ == .__main__.:",
"if TYPE_CHECKING:",
]