-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
49 lines (43 loc) · 1006 Bytes
/
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
[project]
name = "pdm-pip-index-url"
version = "0.1.1"
description = "An automatic converter of PIP_*INDEX_URL to PDM_PYPI_* envs."
authors = [
{name = "Kamil Janiec", email = "[email protected]"},
]
dependencies = [
]
requires-python = ">=3.7"
readme = "README.md"
license = {text = "MIT"}
[project.urls]
repository = "https://github.com/theredfoxlee/pdm-pip-index-url"
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[tool.pdm.dev-dependencies]
dev = [
"pytest>=7.3.1",
"black>=23.3.0",
"isort>=5.11.5",
"ruff>=0.0.270",
"mypy>=1.3.0",
"pdm>=2.7.0",
"pytest-mock>=3.10.0",
]
[tool.pdm.scripts]
unit-tests = "pytest tests/"
linters = {composite = [
"black .",
"isort .",
"ruff --fix .",
"mypy .",
]}
linters-check = {composite = [
"black --check .",
"isort --check-only .",
"ruff check .",
"mypy .",
]}
[project.entry-points.pdm]
pip_index_url = "pdm_pip_index_url:register_plugin"