2024-09-16 02:46:57 +02:00
|
|
|
[build-system]
|
2024-09-22 00:07:15 +02:00
|
|
|
requires = ["setuptools", "setuptools-scm", "wheel"]
|
|
|
|
build-backend = "setuptools.build_meta"
|
2024-09-16 02:46:57 +02:00
|
|
|
|
|
|
|
[project]
|
|
|
|
name = 'pyacl'
|
|
|
|
description = 'High level abstractions over pylibacl'
|
|
|
|
version = '0.0.1'
|
2024-09-22 00:07:15 +02:00
|
|
|
readme = "README.md"
|
2024-09-16 02:46:57 +02:00
|
|
|
authors = [
|
|
|
|
{ name='Georg Pfuetzenreuter', email='georg+python@lysergic.dev' },
|
|
|
|
]
|
2024-09-22 00:07:15 +02:00
|
|
|
classifiers = [
|
|
|
|
"Development Status :: 3 - Alpha",
|
|
|
|
"Intended Audience :: Developers",
|
|
|
|
"Intended Audience :: Education",
|
|
|
|
"Intended Audience :: Science/Research",
|
|
|
|
"License :: OSI Approved :: European Union Public Licence 1.2 (EUPL 1.2)",
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"Programming Language :: Python :: 3.6",
|
|
|
|
"Programming Language :: Python :: 3.7",
|
|
|
|
"Programming Language :: Python :: 3.8",
|
|
|
|
"Programming Language :: Python :: 3.9",
|
|
|
|
"Programming Language :: Python :: 3.10",
|
|
|
|
"Programming Language :: Python :: 3.11",
|
|
|
|
"Programming Language :: Python :: 3.12",
|
|
|
|
"Topic :: Software Development",
|
|
|
|
"Typing :: Typed",
|
|
|
|
"Operating System :: POSIX :: Linux",
|
|
|
|
]
|
2024-09-16 02:46:57 +02:00
|
|
|
requires-python = '>=3.6'
|
|
|
|
|
|
|
|
dependencies = [
|
2024-09-22 00:07:15 +02:00
|
|
|
'pylibacl==0.5.4',
|
2024-09-16 02:46:57 +02:00
|
|
|
]
|
2024-09-22 00:07:15 +02:00
|
|
|
|
2024-09-22 00:18:44 +02:00
|
|
|
[project.optional-dependencies]
|
|
|
|
dev = [
|
|
|
|
"pytest",
|
|
|
|
"ruff",
|
|
|
|
"PyYAML"
|
|
|
|
]
|
|
|
|
|
2024-09-22 00:07:15 +02:00
|
|
|
[tool.setuptools]
|
|
|
|
include-package-data = true # include non-python files in the package (default)
|
|
|
|
|
|
|
|
[tool.setuptools.packages.find]
|
|
|
|
where = ["."]
|
|
|
|
exclude = ["scripts", "scripts.*", "docs.*", "tests", "tests.*", "ruff.toml"]
|
|
|
|
|