-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (40 loc) · 1 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
[project]
name = "universalPip"
version = "0.1.1"
description = "Creates an Universal2 distribution for given package on PyPI and installs it."
readme = "README.md"
requires-python = ">=3.8"
license = "MIT"
authors = [
{ name = "Maxime CORDELLA", email = "[email protected]" }
]
keywords = [
"Universal2",
"macOSX",
"pyinstaller",
"arm64",
"x86_64"
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: MacOS",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
]
dependencies = [
"requests",
"regex",
"delocate",
"asyncio"
]
[project.scripts]
uPip = "uPip.cli:processInput"
[project.urls]
Homepage = "https://github.com/MaximeLeMagicien/uPip"
Issues = "https://github.com/MaximeLeMagicien/uPip/issues"
Changelog = "https://github.com/MaximeLeMagicien/uPip/blob/main/Changelog.md"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"