-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
52 lines (45 loc) · 1.54 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
[build-system]
requires = ["setuptools>=68.2.2"]
build-backend = "setuptools.build_meta"
[project]
name = "impresso_commons"
authors = [
{name="Maud Ehrmann", email="[email protected]"},
{name="Matteo Romanello", email="[email protected]"}
]
description = "Python module highly reusable within impresso."
readme = "README.md"
requires-python = ">=3.6"
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dynamic = ["version","dependencies"]
[project.urls]
Homepage = "https://github.com/impresso/impresso-pycommons"
Documentaton = "https://impresso-pycommons.readthedocs.io/en/latest/"
[tool.setuptools.dynamic]
version = {attr = "impresso_commons.__version__"}
dependencies = {file = ["requirements.txt"]}
[tool.setuptools.packages.find]
include = ["impresso_commons*"]
namespaces = false
[tool.setuptools.package-data]
impresso_commons = [
"data/xmi/*.xml",
"data/config/*.json",
"schemas/json/*/*.json",
"schemas/docs/*/*.json",
"schemas/*",
]
[project.scripts]
impresso-partitioner = "impresso_commons.utils.daskutils:main"
impresso-rebuilder = "impresso_commons.text.rebuilder:main"