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 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
|
[build-system]
requires = [
"setuptools>=77.0.3",
"wheel",
"cffi>=1.16.0",
]
build-backend = "setuptools.build_meta"
[project]
requires-python = ">= 3.9"
name = "xattr"
version = "1.3.0"
readme = "README.rst"
dependencies = [
"cffi>=1.16.0",
]
authors = [
{name = "Bob Ippolito", email = "bob@redivi.com"},
]
maintainers = [
{name = "Bob Ippolito", email = "bob@redivi.com"},
]
description="Python wrapper for extended filesystem attributes"
license = "MIT"
keywords = ["xattr"]
classifiers = [
"Environment :: Console",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Operating System :: POSIX :: BSD :: FreeBSD",
"Operating System :: POSIX :: SunOS/Solaris",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.urls]
Homepage = "https://github.com/xattr/xattr"
Repository = "https://github.com/xattr/xattr"
[project.optional-dependencies]
test = ["pytest"]
[project.scripts]
xattr = "xattr.tool:main"
[tool.setuptools]
packages = ["xattr"]
[tool.cibuildwheel]
test-requires = "pytest"
test-command = "pytest {project}/tests"
[tool.cibuildwheel.linux]
before-all = "yum install -y libffi-devel"
[[tool.cibuildwheel.overrides]]
select = "*-manylinux2_*"
before-all = "apt-get -y install libffi-dev"
[[tool.cibuildwheel.overrides]]
select = "*-musllinux*"
before-all = "apk add libffi-dev"
|