-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (33 loc) · 1.15 KB
/
Copy pathpyproject.toml
File metadata and controls
37 lines (33 loc) · 1.15 KB
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
[build-system]
requires = []
build-backend = "py2bin.build_backend"
backend-path = ["src"]
[project]
name = "python-to-binary"
version = "0.9.13"
description = "Pure-Python Python-to-C, native binary compiler, and CPython application bundler"
readme = "README-pypi.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [{ name = "python-to-binary contributors" }]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Compilers",
]
[project.urls]
Homepage = "https://github.com/yu314-coder/python_to_binary"
Repository = "https://github.com/yu314-coder/python_to_binary"
Documentation = "https://github.com/yu314-coder/python_to_binary/blob/main/docs/DETAILED_GUIDE.md"
Issues = "https://github.com/yu314-coder/python_to_binary/issues"
[project.scripts]
py2bin = "py2bin.cli:main"
[tool.py2bin]
format = "bin"
dependency-mode = "closure"