-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
50 lines (41 loc) · 1.45 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 = ['setuptools>=62', "setuptools-scm[toml]", 'wheel', 'pytest-runner>=2.9', ]
build-backend = "setuptools.build_meta"
[project]
authors=[{ name = "René Fritze", email = "[email protected]" }]
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
]
description='Get "oldest" fitting requirements from pypi'
dependencies = [
"packaging",
"requirements-parser",
"requests",
"requests-toolbelt",
"typer",
"setuptools",
]
dynamic = ["version", "readme"]
license= {file = "LICENSE"}
keywords= ["pypi", "requirements", "oldest", "tool"]
name="pypi_oldest_requirements"
urls={ homepage = "https://github.com/renefritze/pypi_oldest_requirements" }
requires-python=">=3.8"
[project.scripts]
pypi_minimal_requirements_pinned="pypi_oldest_requirements.cli:run"
[project.optional-dependencies]
dev = ["pytest", "pytest-cov", "twine", "watchdog", "flake8", "coverage", "Sphinx", "pytest-pycharm",
"pytest-regressions", "pre-commit", "black", ]
[tool.setuptools.dynamic]
version = { attr = "setuptools_scm.get_version" }
readme = {file = ["README.md", ]}
[tool.setuptools_scm]
write_to = "pypi_oldest_requirements/_version.py"
[tool.setuptools]
packages=["pypi_oldest_requirements"]