forked from Georg/pyacl
Compare commits
4 Commits
81c79895ed
...
96b0b640cb
Author | SHA1 | Date | |
---|---|---|---|
96b0b640cb | |||
d22b176521 | |||
c6496c68f9 | |||
328652d59e |
3
.gitignore
vendored
3
.gitignore
vendored
@ -1,3 +1,6 @@
|
|||||||
dist
|
dist
|
||||||
venv
|
venv
|
||||||
__pycache__
|
__pycache__
|
||||||
|
.venv
|
||||||
|
env
|
||||||
|
*.egg-info
|
||||||
|
@ -7,3 +7,5 @@ You may not use this work except in compliance with the Licence.
|
|||||||
An English copy of the Licence is shipped in a file called LICENSE along with this applications source code.
|
An English copy of the Licence is shipped in a file called LICENSE along with this applications source code.
|
||||||
You may obtain copies of the Licence in any of the official languages at https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12.
|
You may obtain copies of the Licence in any of the official languages at https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
from .__version__ import __version__
|
1
pyacl/__version__.py
Normal file
1
pyacl/__version__.py
Normal file
@ -0,0 +1 @@
|
|||||||
|
__version__ = "0.0.1"
|
@ -1,20 +1,54 @@
|
|||||||
[build-system]
|
[build-system]
|
||||||
requires = [
|
requires = ["setuptools>=64", "setuptools-scm>=8", "wheel"]
|
||||||
'hatchling',
|
build-backend = "setuptools.build_meta"
|
||||||
]
|
|
||||||
build-backend = 'hatchling.build'
|
|
||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = 'pyacl'
|
name = 'pyacl'
|
||||||
description = 'High level abstractions over pylibacl'
|
description = 'High level abstractions over pylibacl'
|
||||||
version = '0.0.1'
|
dynamic = ["version", "readme"]
|
||||||
authors = [
|
authors = [
|
||||||
{ name='Georg Pfuetzenreuter', email='georg+python@lysergic.dev' },
|
{ name='Georg Pfuetzenreuter', email='georg+python@lysergic.dev' },
|
||||||
]
|
]
|
||||||
readme = 'README.md'
|
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",
|
||||||
|
]
|
||||||
requires-python = '>=3.6'
|
requires-python = '>=3.6'
|
||||||
|
|
||||||
[tool.hatch.build.targets.pyacl]
|
|
||||||
dependencies = [
|
dependencies = [
|
||||||
'pylibacl',
|
'pylibacl==0.5.4',
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[project.optional-dependencies]
|
||||||
|
dev = [
|
||||||
|
"pytest",
|
||||||
|
"ruff",
|
||||||
|
"PyYAML"
|
||||||
|
]
|
||||||
|
|
||||||
|
[tool.setuptools]
|
||||||
|
include-package-data = true # include non-python files in the package (default)
|
||||||
|
|
||||||
|
[tool.setuptools.dynamic]
|
||||||
|
version = {attr = "pyacl.__version__"}
|
||||||
|
readme = {file = ["README.md"]}
|
||||||
|
|
||||||
|
[tool.setuptools.packages.find]
|
||||||
|
where = ["."]
|
||||||
|
exclude = ["scripts", "scripts.*", "docs.*", "tests", "tests.*", "ruff.toml"]
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user