-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
100 lines (90 loc) · 2.9 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
97
98
99
100
[build-system]
requires = ["setuptools>=65.6.0"]
build-backend = "setuptools.build_meta"
[project]
name = "wr-cloner"
# Make sure this matches the description in GitHub, in the README.md and in the cli.
description = "A tool to clone efficiently all the repos in an organization"
readme = "README.md"
authors = [{ "name" = "w0rmr1d3r" }]
license = { text = "MIT" }
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"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",
"Topic :: Security",
"Topic :: Software Development :: Version Control",
"Topic :: Software Development :: Version Control :: Git",
"Topic :: System",
]
# Make sure this matches the keywords in GitHub
keywords = ["github", "python", "git", "clone", "organization", "multiprocessing", "multithreading", "python3"]
# Make sure this matches the version in __version__.py
# If major increases, update SECURITY.md
version = "1.9.4"
# Supported Python 3.9 and above
# If supporting newer versions, update -> CI & classifiers
# If minimum version supported changes, update -> CI, classifiers & publish-release
requires-python = ">=3.9.0"
# Always try to be compatible with these versions and above
dependencies = [
"click>=8.0.3",
"Deprecated>=1.2.13",
"requests>=2.27.1"
]
[project.optional-dependencies]
# Always try to be compatible with these versions and above
dev = [
"black>=24.3.0",
"coverage>=6.3.2",
"docformatter>=1.5.1",
"faker>=12.0.1",
"pip-tools>=6.5.0",
"pylint>=2.15.10",
"pytest>=6.2.5",
"responses>=0.20.0",
"ruff>=0.0.270"
]
[project.scripts]
cloner = "cloner.cli:cli"
[project.urls]
"Homepage" = "https://github.com/w0rmr1d3r/cloner"
"Repository" = "https://github.com/w0rmr1d3r/cloner"
"Bug Tracker" = "https://github.com/w0rmr1d3r/cloner/issues"
"Documentation" = "https://github.com/w0rmr1d3r/cloner"
"Changelog" = "https://github.com/w0rmr1d3r/cloner/releases"
"Funding" = "https://github.com/sponsors/w0rmr1d3r"
[tool.setuptools]
packages = ["cloner"]
[tool.black]
line-length = 120
exclude = '''
/(
| \.venv
| venv
)/
'''
[tool.ruff]
# Override E and F, they are in the default
# Rules are in: https://beta.ruff.rs/docs/rules/
select = ["E", "F", "FIX", "I", "RUF"]
line-length = 120
[tool.pylint.'MESSAGES CONTROL']
# C0114 - missing module docstring - does not apply (yet)
disable = "C0114"
fail-under = 8
max-line-length = 120
[tool.docformatter]
recursive = true
wrap-summaries = 90
wrap-descriptions = 90