-
Notifications
You must be signed in to change notification settings - Fork 22
/
pyproject.toml
36 lines (31 loc) · 960 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
35
36
[build-system]
requires = ["setuptools==74.1.2"]
build-backend = "setuptools.build_meta"
[project]
dynamic = ["version"]
name = "crossenv"
description = "A cross-compiling tool for Python extension modules"
readme = { file = "README.rst", content-type = "text/x-rst"}
requires-python = ">=3.4"
license = { file = "LICENSE.txt" }
authors = [
{ name = "Benjamin Fogle", email = "[email protected]" }
]
maintainers = [
{ name = "Benjamin Fogle", email = "[email protected]" }
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
[project.urls]
Homepage = "https://github.com/benfogle/crossenv"
[tool.setuptools]
packages = ["crossenv"]
[tool.setuptools.dynamic]
version = { attr = "crossenv.__version__" }
[tool.setuptools.package-data]
crossenv = ["scripts/*"]