-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (45 loc) · 1.59 KB
/
pyproject.toml
File metadata and controls
51 lines (45 loc) · 1.59 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
42
43
44
45
46
47
48
49
50
51
[build-system]
requires = ["setuptools>=77.0.1"]
build-backend = "setuptools.build_meta"
[project]
name = "pyeclib"
version = "1.8.0"
authors = [
{name = "Kevin Greenan", email = "kmgreen2@gmail.com"},
]
maintainers = [
{name = "Tim Burke", email = "tim.burke@gmail.com"},
{name = "Kevin Greenan", email = "kmgreen2@gmail.com"},
{name = "Tushar Gohad", email = "tusharsg@gmail.com"},
]
description = "This library provides a simple Python interface for implementing erasure codes. To obtain the best possible performance, the underlying erasure code algorithms are written in C."
readme = "README.rst"
requires-python = ">=3.10"
license = "BSD-2-Clause"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Intended Audience :: Developers",
]
[project.scripts]
pyeclib-backend = "pyeclib.cli.__main__:main"
[project.urls]
Homepage = "https://opendev.org/openstack/pyeclib"
"Bug Tracker" = "https://bugs.launchpad.net/pyeclib"
"Release Notes" = "https://opendev.org/openstack/pyeclib/src/branch/master/ChangeLog"
[tool.setuptools]
platforms = ["Linux"]
include-package-data = false
[tool.setuptools.package-data]
"*" = ["*.pyi"]
[[tool.setuptools.ext-modules]]
name = "pyeclib_c"
sources = ["src/pyeclib_c/pyeclib_c.c"]
include-dirs = ["src/pyeclib_c"]
libraries = ["erasurecode"]
py-limited-api = true