-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathpyproject.toml
63 lines (57 loc) · 1.56 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
62
63
[build-system]
requires = ["setuptools>=62.6", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "prosodic"
description = "Prosodic 2: a metrical-phonological parser, written in Python. For English and Finnish, with flexible language support."
authors = [
{name = "Ryan Heuser", email = "[email protected]"},
]
readme = "README.md"
license = {text = "Apache License, Version 2.0"}
requires-python = ">=3.8"
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dynamic = ["dependencies", "version"]
[project.urls]
"Homepage" = "https://github.com/quadrismegistus/prosodic/tree/develop"
"Project Home" = "https://prosodic.stanford.edu"
"Bug Tracker" = "https://github.com/quadrismegistus/prosodic/issues"
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
version = {attr = "_version.__version__"}
[tool.setuptools]
packages = {find = {}}
include-package-data = true
[project.optional-dependencies]
dev = [
"black>=22.10.0",
"pre-commit>=2.20.0",
"tox",
"sphinx",
"twine",
"wheel",
"pytest-cov",
"pytest>=7.2",
"selenium",
"pytest-cov",
"pytest>=7.2",
]
all = [
"black>=22.10.0",
"pre-commit>=2.20.0",
"tox",
"sphinx",
"twine",
"wheel",
"pytest-cov",
"pytest>=7.2",
]
[project.scripts]
prosodic = "prosodic.cli:cli"