-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
63 lines (58 loc) · 1.74 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
# __ _
# ________/ / ___ _(_)__ ___
# / __/ __/ _ \/ _ `/ / _ \/ -_)
# \__/\__/_//_/\_,_/_/_//_/\__/
#
# Copyright (C) Clément Chaine
# This file is part of ECAP5-TREQ <https://github.com/cchaine/ECAP5-TREQ>
#
# ECAP5-TREQ is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# ECAP5-TREQ is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with ECAP5-TREQ. If not, see <http://www.gnu.org/licenses/>.
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools>=61.0"
]
[project]
name = "ECAP5-TREQ"
version = "2.3.1"
authors = [
{ name = "Clément Chaine", email="clement.chaine25@gmail.com" }
]
description = ""
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent"
]
dependencies = [
'Markdown ~=3.5.2'
]
[project.optional-dependencies]
dev = [
'Sphinx ~= 7.2.6',
'sphinx_rtd_theme ~= 2.0.0',
'sphinx-toolbox ~= 3.5.0',
'pylint ~= 3.0.3',
'pytest ~= 7.4.3',
'pytest-cov ~= 4.1.0',
'mock ~= 5.1.0',
]
[project.urls]
"Homepage" = "https://github.com/ecap5/ECAP5-TREQ"
"Bug Tracker" = "https://github.com/ecap5/ecap5-treq/ECAP5-TREQ"
[project.scripts]
ecap5-treq = "ecap5_treq.main:main"