-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
68 lines (57 loc) · 1.66 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
64
65
66
[build-system]
requires = ["setuptools", "wheel"]
[project]
name = "legaltexts"
dynamic=["version"]
description = "Legal text pipeline tool"
authors = [
{ name="Som Energia", email="[email protected]" },
]
readme = "README.md"
requires-python = ">=3.11"
license = { file="LICENSE"}
keywords = ["text processing"]
classifiers = [
'Topic :: Office/Business',
'Topic :: Text Processing',
'Intended Audience :: Legal Industry',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Framework :: Typer',
'Environment :: Console',
'Development Status :: 3 - Alpha',
'Operating System :: OS Independent',
'Natural Language :: Basque',
'Natural Language :: Catalan',
'Natural Language :: Galician',
'Natural Language :: Spanish',
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
]
dependencies = [
'PyYAML',
'typer',
'consolemsg',
'somutils',
'pytest-cov',
'beautifulsoup4',
]
[tool.setuptools.dynamic]
version = {attr = "legaltexts.__version__"}
[tool.setuptools.package-data]
"legaltexts.i18n" = ["*.yaml"]
[project.scripts]
legal-text-processor = "legaltexts.cli:app"
[project.urls]
Homepage = "https://somenergia.coop"
Documentation = "https://github.com/som-energia/legal-texts"
Repository = "https://github.com/som-energia/legal-texts"
Changelog = "https://github.com/som-energia/legal-texts/blob/master/CHANGELOG.md"
[tool.setuptools.packages]
find = {}
[tool.coverage.run]
relative_files = true
branch = true
omit = ["**/*test.py"]
[tool.pytest.ini_options]
addopts = "--doctest-modules --cov=legaltexts"