-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
49 lines (43 loc) · 1.33 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pypickup"
version = "0.3.6"
authors = [
{ name="German Navarro", email="[email protected]" },
{ name="Sergio Sánchez Ramírez", email="[email protected]" },
]
description = "An utility to generate a local PyPI cache for selected packages based on the PyPI.org repositories."
readme = "README.md"
license = { file="LICENSE" }
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: System :: Archiving :: Mirroring"
]
dependencies = [
"beautifulsoup4==4.11.1",
"wheel-filename==1.4.1",
"multimethod==1.9",
"requests==2.31.0",
"tqdm==4.64.1",
"PyYAML==6.0",
"pytest-cov==4.0.0",
]
[tool.setuptools]
packages = ["pypickup", "pypickup.cmd", "pypickup.settings", "pypickup.utils"]
[project.urls]
"Homepage" = "https://github.com/UB-Quantic/pypickup"
[project.scripts]
pypickup = "pypickup.cli:cli"
[project.entry-points."pypickup.cmd"]
add = "pypickup.cmd:AddEP"
rm = "pypickup.cmd:RemoveEP"
list = "pypickup.cmd:ListEP"
config = "pypickup.cmd:ConfigEP"
rebuild-index = "pypickup.cmd:RebuildIndexEP"
[tool.black]
line-length = 1000