-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
85 lines (66 loc) · 2.55 KB
/
pyproject.toml
File metadata and controls
85 lines (66 loc) · 2.55 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
[build-system]
requires = [ "setuptools>=61.2",]
build-backend = "setuptools.build_meta"
[project]
name = "edictor"
version = "3.2.dev0"
description = "Web-Based Tool for Computer-Assisted Language Comparison"
keywords = [ "linguistics", "sequence alignment", "computational linguistics", "dialectology", "cognate detection",]
classifiers = [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "Intended Audience :: Science/Research", "Natural Language :: English", "Operating System :: OS Independent", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "License :: OSI Approved :: GNU General Public License v3 (GPLv3)"]
requires-python = ">=3.9"
dependencies = []
authors = [
{name = "Johann-Mattis List", email = "[email protected]"},
]
maintainers = [
{name = "Frederic Blum", email = "[email protected]"},
{name = "Kellen Parker van Dam", email = "[email protected]"}
]
readme = {file = "README.md", content-type = "text/markdown"}
[project.license]
text = "MIT"
license-files = ["LICENSE"]
[project.urls]
Homepage = "https://edictor.org"
Repository = "https://github.com/digling/edictor.git"
[project.optional-dependencies]
dev = [ "build", "wheel", "twine", "tox", "lingrex==1.4.2", "lingpy==2.6.13", "lexibase",]
test = [ "pytest", "pytest-cov", "coverage", "lingpy==2.6.13", "lingrex==1.4.2", "lexibase",]
lingpy = [ "lingpy==2.6.13", "lingrex==1.4.2", "lexibase",]
[project.scripts]
edictor = "edictor.cli:main"
[tool.setuptools]
zip-safe = false
include-package-data = true
platforms = [ "any",]
[tool.flake8]
ignore = "E711,E712,D100,D101,D103,D102,D301,E731"
max-line-length = "100"
exclude = ".tox,cython"
[tool.testenv]
deps = ".[test]"
commands = "pytest {posargs}"
[tool.setuptools.package-dir]
"" = "src"
[tool.setuptools.package-data]
edictor = [ "data/*",]
[tool.distutils.bdist_wheel]
universal = 1
[tool.distutils.easy_install]
zip-ok = false
[tool.pytest.ini_options]
minversion = "5"
testpaths = [ "tests",]
addopts = "--cov"
[tool.coverage.run]
source = [ "edictor", "tests",]
[tool.coverage.report]
show_missing = true
skip_covered = true
[tool.tox.tox]
envlist = "py39, py310, py311, py312"
isolated_build = "true"
skip_missing_interpreter = "true"
[tool.setuptools.packages.find]
where = [ "src",]
namespaces = false