-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
48 lines (43 loc) · 1.47 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
[build-system]
requires = ["setuptools>=68.2.2"]
build-backend = "setuptools.build_meta"
[project]
name = "impresso_essentials"
authors = [
{name="Pauline Conti", email="pauline.conti@epfl.ch"},
{name="Maud Ehrmann", email="maud.ehrmann@epfl.ch"},
{name="Matteo Romanello", email="matteo.romanello@gmail.com"}
]
description = "Python module highly reusable within impresso."
readme = "README.md"
requires-python = ">=3.10"
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.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
]
dynamic = ["version","dependencies"]
[project.urls]
Homepage = "https://github.com/impresso/impresso-essentials"
Documentaton = "https://impresso-essentials.readthedocs.io/en/latest/"
[tool.setuptools.dynamic]
version = {attr = "impresso_essentials.__version__"}
dependencies = {file = ["requirements.txt"]}
[tool.setuptools.packages.find]
include = ["impresso_essentials*"]
namespaces = false
[tool.setuptools.package-data]
impresso_essentials = [
"data/xmi/*.xml",
"data/config/*.json",
"schemas/json/*/*.json",
"schemas/docs/*/*.json",
"schemas/*",
]