-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
44 lines (38 loc) · 1.09 KB
/
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
40
41
42
43
44
[build-system]
requires = [
"setuptools>=70.1,<75",
]
build-backend = "setuptools.build_meta"
[project]
name = "cx_Logging"
description = "Python and C interfaces for logging"
readme = "README.txt"
authors = [{name = "Anthony Tuininga", email = "anthony.tuininga@gmail.com"}]
keywords = ["logging"]
license = {text = "BSD License"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: C",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
]
requires-python = ">=3.9"
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/anthony-tuininga/cx_Logging"
[tool.setuptools]
zip-safe = false
license-files = ["LICENSE.txt"]
include-package-data = false
[tool.cibuildwheel]
build-verbosity = "1"
[tool.cibuildwheel.linux]
build = "cp3*-manylinux_*"
archs = "x86_64 aarch64"
[tool.cibuildwheel.windows]
build = "cp3*"