-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (40 loc) · 1.46 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "wordprofile"
description = "Collocation Extraction @ DWDS/ZDL"
authors = [
{name = "Luise Köhler", email = "[email protected]"},
{name = "René Knaebel", email = "[email protected]"},
{name = "Gregor Middell", email = "[email protected]"}
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Topic :: Education",
"Topic :: Scientific/Engineering",
"Topic :: Text Processing :: Linguistic"
]
requires-python = ">=3.12"
dynamic = ["readme", "version", "dependencies", "optional-dependencies"]
[project.urls]
Homepage = "https://github.com/zentrum-lexikographie/wordprofile"
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
testpaths = ["tests"]
[[tool.mypy.overrides]]
module = ["pymysql", "MySQLdb"]
ignore_missing_imports = true
[tool.setuptools.dynamic]
readme = {file = ["README.md"], content-type = "text/markdown"}
version = {attr = "wordprofile.version.__version__"}
dependencies = { file = ["requirements/base.in"] }
optional-dependencies.dev = { file = ["requirements/dev.in"] }
optional-dependencies.api = { file = ["requirements/api.in"] }
optional-dependencies.build = { file = ["requirements/build.in"] }
[tool.setuptools.packages.find]
exclude = ["tests"]