-
Notifications
You must be signed in to change notification settings - Fork 115
/
Copy pathpyproject.toml
96 lines (83 loc) · 2.38 KB
/
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
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
[project]
name = "bypass-url-parser"
dynamic = ["version"]
description = "Default template for PDM package"
authors = [
{ name = "Laluka", email = "loukajc@gmail.com" },
{ name = "jtof_fap", email = "jtof_fap@insecurity.fr" },
{ name = "Gabriel Dugny", email = "pypi@dugny.me" },
]
dependencies = ["coloredlogs==15.0.1", "docopt==0.6.2"]
requires-python = ">=3.8"
keywords = ["security"]
readme = "README.md"
license = { text = "AGPL-3.0-or-later" }
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Typing :: Typed",
"Topic :: Security",
"Operating System :: OS Independent",
"Environment :: Console",
]
[project.urls]
Repository = "https://github.com/laluka/bypass-url-parser"
Changelog = "https://github.com/laluka/bypass-url-parser/releases"
[project.scripts]
"bypass-url-parser" = "bypass_url_parser:main"
"bup" = "bypass_url_parser:main"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm]
distribution = true
plugins = ["sync-pre-commit-lock", "pdm-autoexport"]
[tool.pdm.scripts]
"lint-ruff" = "ruff check ."
[tool.pdm.version]
source = "scm"
write_to = "bypass_url_parser/_version.py"
write_template = "__version__ = \"{}\"\n"
[tool.pdm.dev-dependencies]
dev = [
"coloredlogs==15.0.1",
"docopt==0.6.2",
"ipdb==0.13.9",
"ipython>=8.10.0",
"pre-commit==3.2.2",
"rich==13.3.4",
"isort>=5.13.2",
"mypy>=1.8.0",
"types-docopt>=0.6.11.4",
"autopep8>=2.0.4",
"ruff>=0.3.0",
"tox-pdm>=0.7.2",
"tox>=4.13.0",
"pytest>=8.0.2",
]
[[tool.pdm.autoexport]]
filename = "requirements.txt"
groups = ["default"]
[[tool.pdm.autoexport]]
filename = "requirements-dev.txt"
groups = ["dev"]
[tool.autopep8]
max_line_length = 120
in-place = true
recursive = true
aggresive = 1
[tool.mypy]
files = ["src"]
python_version = "3.8"
[[tool.mypy.overrides]]
module = "coloredlogs"
ignore_missing_imports = true