forked from xukmin/viterbi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
35 lines (32 loc) · 1000 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
35
[build-system]
requires = ["setuptools", "pybind11"]
build-backend = "setuptools.build_meta"
[project]
version = "0.0.4"
name = "viterbi"
authors = [
{name = "Yachen Mao", email = "[email protected]"},
{name = "Min Xu", email = "[email protected]"},
]
description = "A Convolutional Encoder and Viterbi Decoder in Python/C++."
readme = "README.md"
requires-python = ">=3.7"
keywords = ["viterbi"]
license = {file = "LICENSE"}
dependencies = []
classifiers = [
'Programming Language :: C++',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
"Programming Language :: Python :: 3 :: Only",
'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',
]
[project.urls]
Source = "https://github.com/clysto/viterbi"
[tool.setuptools]
py-modules = ["viterbi"]
include-package-data = true