-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
53 lines (46 loc) · 1.67 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "fs2l"
dynamic = ["version"]
description = "Text-to-Speech Synthesis for the Speech Generation for Indigenous Language Education Small Teams Project"
license = "MIT"
readme = "readme.md"
requires-python = ">=3.10"
authors = [
{ name = "Aidan Pine", email = "[email protected]" },
{ name = "Samuel Larkin", email = "[email protected]" },
{ name = "Eric Joanis", email = "[email protected]" },
{ name = "Mengzhe Geng", email = "[email protected]" },
]
maintainers = [
{ name = "Aidan Pine", email = "[email protected]" },
{ name = "Samuel Larkin", email = "[email protected]" },
{ name = "Eric Joanis", email = "[email protected]" },
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Development Status :: 3 - Alpha",
"Topic :: Multimedia :: Sound/Audio :: Speech",
]
dependencies = ["everyvoice==0.3.*"]
[project.scripts]
fs2l = "fs2.cli:app"
[project.urls]
Homepage = "https://github.com/EveryVoiceTTS/FastSpeech2_lightning"
Repository = "https://github.com/EveryVoiceTTS/FastSpeech2_lightning"
Issues = "https://github.com/EveryVoiceTTS/FastSpeech2_lightning/issues"
[tool.hatch.version]
path = "fs2/_version.py"
[tool.hatch.build.targets.sdist]
include = ["/fs2"]
[tool.hatch.build.targets.wheel]
include = ["/fs2"]
[project.optional-dependencies]
dev = ["everyvoice[dev]"]