-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
62 lines (51 loc) · 1.8 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
54
55
56
57
58
59
60
61
[project]
name = "pygamma-agreement"
readme = "README.md"
version = "0.5.9"
description = 'Inter-annotator agreement measure and alignment written in python'
authors = [
{ name = "Hadrien Titeux", email = "hadrien.titeux@ens.psl.eu" },
{ name = "Rachid Riad", email = "rachid.riad@ens.psl.eu" },
{ name = "Léopold Favre", email = "favreleopold@gmail.com" },
]
maintainers = [
{ name = "Hadrien Titeux", email = "hadrien.titeux@ens.psl.eu" },
]
license = { text = "MIT" }
requires-python = ">=3.7"
keywords = []
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering",
"Topic :: Text Processing :: Linguistic",
"Topic :: Multimedia :: Sound/Audio :: Speech",
"Programming Language :: Python :: 3",
"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",
]
dynamic = ["dependencies"]
[project.urls]
Documentation = "https://pygamma-agreement.readthedocs.io/en/latest/"
Homepage = "https://github.com/bootphon/pygamma-agreement"
Repository = "https://github.com/bootphon/pygamma-agreement"
[tool.setuptools.dynamic]
dependencies = { file = ["requirements.txt"] }
[project.optional-dependencies]
notebook = ["matplotlib"]
CBC = ["cylp"]
testing = ["pytest", "cylp"]
docs = ["sphinx", "sphinx_rtd_theme"]
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project.scripts]
pygamma-agreement = "pygamma_agreement.cli_apps:pygamma_cmd"
[tool.setuptools.packages.find]
where = ["."]
include = ["pygamma_agreement*"]
exclude = ["docs*", "tests*"]