-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
50 lines (45 loc) · 1.28 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "pip-abandoned"
authors = [{name = "chris48s", email = "[email protected]"}]
description = "Search for abandoned and deprecated python packages"
readme = "README.md"
license = {file = "LICENSE"}
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"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",
]
dynamic = ["version"]
requires-python = ">=3.8"
dependencies = [
"keyring>=19",
"requests>=2,<3",
"rich>=12",
"importlib-metadata>=4.6; python_version < '3.10'",
]
[project.optional-dependencies]
dev = [
"flit==3.10.1",
"isort==5.13.2",
"flake8==7.1.1",
"black==24.8.0",
"pytest==8.3.3",
"pytest-cov==5.0.0",
"responses==0.25.3",
]
[project.urls]
Home = "https://github.com/chris48s/pip-abandoned"
Source = "https://github.com/chris48s/pip-abandoned"
[tool.flit.module]
name = "pip_abandoned"
[project.scripts]
pip-abandoned = "pip_abandoned:main"