-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
34 lines (30 loc) · 1022 Bytes
/
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
[build-system]
requires = ["setuptools>=61.2.0", "setuptools_scm[toml]>=3.4.3"]
build-backend = "setuptools.build_meta"
[project]
name = "bind"
readme = "ReadMe.md"
description = "A tool to inline constants into function to speed them up written just for fun."
authors = [{name = "KOLANICH"}]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"License :: Public Domain",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Libraries :: Python Modules",
]
keywords = ["python", "programming", "inline", "speed", "performance", "optimization"]
license = {text = "Unlicense"}
requires-python = ">=3.4"
dynamic = ["version"]
[project.urls]
Homepage = "https://codeberg.org/KOLANICH-libs/bind.py"
[tool.setuptools]
include-package-data = true
zip-safe = true
py-modules = ["bind"]
[tool.setuptools_scm]