-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
55 lines (50 loc) · 1.54 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "rez-pip"
version = "0.3.2"
description = "Modern rez-pip"
authors = [
{ name="Jean-Christophe Morin", email="[email protected]" },
]
license = { file="LICENSE" }
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"installer>=0.7.0",
"aiohttp",
"packaging>=23.1",
# 2.114.0 adds rez.version.
"rez>=2.114.1",
"dataclasses-json",
"rich",
"importlib_metadata>=4.6; python_version < '3.10'",
# 1.3 introduces type hints.
"pluggy>=1.2",
# Patches are finicky... Let's lock on the current latest version.
# We could always relax later if needed.
"patch-ng==1.18.1",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
"Natural Language :: English"
]
keywords = []
[project.urls]
Homepage = "https://github.com/JeanChristopheMorinPerso/rez-pip"
Tracker = "https://github.com/JeanChristopheMorinPerso/rez-pip/issues"
Documentation = "https://rez-pip.readthedocs.io"
[project.scripts]
rez-pip2 = "rez_pip.cli:run"
[tool.hatch.build.targets.sdist]
# Ensure the sdist includes a setup.py for older pip versions
# support-legacy = true
exclude = [".github"]