Skip to content

Commit da32696

Browse files
authored
Create pyproject.toml
1 parent 60242c0 commit da32696

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
[build-system]
2+
requires = ["setuptools>=61", "wheel"]
3+
build-backend = "setuptools.build_meta"
4+
5+
[project]
6+
name = "metacall"
7+
version = "0.5.2"
8+
description = "A library for providing inter-language foreign function interface calls"
9+
readme = "README.rst"
10+
requires-python = ">=3.7"
11+
license = { text = "Apache-2.0" }
12+
authors = [{ name = "Vicente Eduardo Ferrer Garcia", email = "vic798@gmail.com" }]
13+
classifiers = [
14+
"Development Status :: 4 - Beta",
15+
"Intended Audience :: Developers",
16+
"Topic :: Software Development :: Interpreters",
17+
"Programming Language :: Python :: 3",
18+
"Programming Language :: Python :: 3.3",
19+
"Programming Language :: Python :: 3.4",
20+
"Programming Language :: Python :: 3.5",
21+
"Programming Language :: Python :: 3.6",
22+
"Programming Language :: Python :: 3.7",
23+
"Programming Language :: Python :: 3.8",
24+
"Programming Language :: Python :: 3.9",
25+
"Programming Language :: Python :: 3.10",
26+
"Programming Language :: Python :: 3.11",
27+
"Programming Language :: Python :: 3.12",
28+
"Programming Language :: Python :: 3.13"
29+
]
30+
dependencies = []
31+
32+
[tool.setuptools]
33+
packages = ["metacall"]
34+
35+
[tool.setuptools.package-data]
36+
"metacall" = ["*"]

0 commit comments

Comments
 (0)