forked from python/cpython
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path_compiled_pyproject.toml
39 lines (35 loc) · 1022 Bytes
/
_compiled_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
[project]
name = "compiled"
version = "0.3.0"
description = "Compiled versions of the Python standard library."
authors = [
{name = "Tushar Sadhwani", email = "tushar.sadhwani000@gmail.com"},
]
license = {text = "PSF license"}
classifiers = [
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Typing :: Typed",
]
# TODO: bump this down
requires-python = ">=3.11"
dynamic = ['readme']
[project.urls]
Homepage = "https://github.com/tusharsadhwani/compiled"
[project.scripts]
pycompile = "compiled:cli"
[build-system]
requires = [
"setuptools",
"wheel",
"mypy[mypyc]",
]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
readme = {file = "README.md", content-type = "text/markdown"}