|
| 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