-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
41 lines (34 loc) · 1.11 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "dynamicfluency"
version = "0.2.0"
authors = [
{ name="JJWRoeloffs", email="jelleroeloffs@gmail.com" },
]
description = "The base python package for DynamicFluency: Monitor and understand the dynamicity of linguistic aspects in (L2) speech."
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
]
dynamic = ["dependencies"]
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
dynamicfluency = ["**/data/*"]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[project.urls]
"Homepage" = "https://github.com/JJWRoeloffs/bare_python_publish"
"Bug Tracker" = "https://github.com/JJWRoeloffs/bare_python_publish/issues"
[tool.pytest.ini_options]
# Spacy uses some deprecated parts of Tensorflow
filterwarnings = [
'ignore:.*U.*is deprecated:DeprecationWarning'
]