forked from JeanChristopheMorinPerso/rez-pip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (37 loc) · 1.16 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "rez-pip"
version = "0.1.0"
description = "Modern rez-pip"
authors = [
{ name="Jean-Christophe Morin", email="[email protected]" },
]
license = { file="LICENSE" }
readme = "README.md"
requires-python = ">=3.7"
dependencies = [
"installer"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"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"
# [project.entry-points."opentimelineio.plugins"]
# otio_fcpxxml_adapter = "otio_fcpxxml_adapter"
[tool.hatch.build.targets.sdist]
# Ensure the sdist includes a setup.py for older pip versions
# support-legacy = true
exclude = [".github"]