-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (36 loc) · 1.04 KB
/
Copy pathpyproject.toml
File metadata and controls
41 lines (36 loc) · 1.04 KB
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "xcffib"
version = "1.12.0"
description = "xcffib is the XCB binding for python"
readme = "README.md"
keywords = ["xcb", "cffi", "x11", "x", "windows"]
license = {text = "Apache License 2.0"}
authors = [
{name = "Tycho Andersen", email = "tycho@tycho.pizza"},
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries",
]
dependencies = [
"cffi>=1.1.0; python_implementation != 'PyPy'",
]
requires-python = ">=3.10"
[project.urls]
Homepage = "http://github.com/tych0/xcffib"
[tool.setuptools.packages.find]
where = ["."]
include = ["xcffib*"]
[tool.setuptools.package-data]
xcffib = ["py.typed"]
[project.optional-dependencies]
dev = [
"pytest>=8.4",
]