-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
34 lines (31 loc) · 980 Bytes
/
pyproject.toml
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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "ffrs"
authors = [
{name = "Gabriel Machado", email = "[email protected]"},
]
description = "Fairly Fast & Flexible Reed-Solomon coding"
readme = "README.rst"
requires-python = ">=3.7"
keywords = ["reed-solomon", "ecc", "error-correction", "data", "storage"]
license = {text = "Apache-2.0"}
classifiers = [
"Intended Audience :: Developers",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Topic :: Communications",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Software Development :: Libraries",
"Topic :: System :: Archiving",
"Topic :: System :: Archiving :: Backup",
"Topic :: Utilities",
]
dependencies = [
]
dynamic = ["version"]
[project.optional-dependencies]
docs = ["Sphinx>=7.2.0", "furo==2023.9.10"]
# [project.scripts]
# my-script = "ffrs.module:function"