-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (64 loc) · 1.79 KB
/
Copy pathpyproject.toml
File metadata and controls
67 lines (64 loc) · 1.79 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[tool.poetry]
name = "k2-nailuo"
version = "0.1.3"
description = "FSA/FST algorithms, intended to (eventually) be interoperable with PyTorch and similar."
authors = [
"Daniel Povey",
"Fangjun Kuang",
"Haowen Qiu",
"Meixu Song",
]
readme = "README.md"
homepage = "https://github.com/open-speech/sequeender"
repository = "https://github.com/open-speech/sequeender"
documentation = "https://github.com/open-speech/sequeender"
keywords = ["FSA", "Speech", "Machine earning"]
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: C++',
'Programming Language :: Python :: 3',
]
license = "MIT"
build = "build.py"
packages = [
{ include = "k2"},
]
include = [
"k2/csrc/**/*.h",
"k2/python/csrc/**/*.h",
"k2/python/k2/*.py",
]
exclude = [
"k2/csrc/**/*.cc",
"k2/csrc/**/*.cu",
"k2/csrc/**/*.in",
"k2/python/host",
"k2/python/csrc/**/*.cu",
"k2/python/tests",
"k2/**/*.txt",
"k2/**/*.egg-info",
]
[tool.poetry.dependencies]
python = "^3.7"
torch = "^1.6.0"
graphviz = "^0.14.1"
[tool.poetry.dev-dependencies]
cmake = "^3.18.4"
conan = "^1.31.0"
flake8 = "^3.8.3"
yapf = "^0.27.0"
clang-format = "^9.0.0"
setuptools-cpp = "0.1.0"
[build-system]
requires = ["poetry-core>=1.1.0", "setuptools", "wheel", "setuptools-cpp"]
build-backend = "poetry.masonry.api"