File: pyproject.toml

package info (click to toggle)
python-pyeclib 1.7.0-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 7,676 kB
  • sloc: python: 2,469; ansic: 878; sh: 139; makefile: 30
file content (48 lines) | stat: -rw-r--r-- 1,597 bytes parent folder | download
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
[build-system]
requires = ["setuptools>=74.1"]
build-backend = "setuptools.build_meta"

[project]
name = "pyeclib"
version = "1.7.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 = {text = "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",
    "Intended Audience :: Developers",
    "License :: OSI Approved :: BSD License",
]

[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]
packages = ["pyeclib", "pyeclib.cli"]
platforms = ["Linux"]

[[tool.setuptools.ext-modules]]
name = "pyeclib_c"
sources = ["src/c/pyeclib_c/pyeclib_c.c"]
include-dirs = ["src/c/pyeclib_c"]
libraries = ["erasurecode"]
py-limited-api = true