-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
78 lines (69 loc) · 2.12 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
67
68
69
70
71
72
73
74
75
76
77
78
# automua™ is a trademark of "Gaspard d'Hautefeuille" and may not be used
# by third parties without the prior written permission of the author.
# Copyright © 2022 Gaspard d'Hautefeuille
# This file is part of automua.
# automua 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.
# automua 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 automua. If not, see <https://www.gnu.org/licenses/>.
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "automua"
dynamic = ["version"]
authors = [
{ name="Gaspard d'Hautefeuille", email="contact@hlfh.space" },
]
description = "Mail client autoconfiguration service"
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable"
]
dependencies =[
'Flask==2.2.2',
'Flask-Migrate==4.0.0',
'Flask-SQLAlchemy==3.0.2',
'ldap3==2.9.1',
'Werkzeug==2.2.2',
'SQLAlchemy==2.0.0rc1',
'alembic==1.9.1',
'lxml==4.9.2'
]
[project.optional-dependencies]
test = [
'pytest==7.2.0',
'pytest-flask==1.2.0'
]
deploy = [
'hatch==1.6.3',
'pip-tools==6.12.1',
'coverage==7.0.2',
'flake8==6.0.0'
]
mysql = [
'mysqlclient==2.1.1'
]
[project.urls]
"Homepage" = "https://hlfh.github.io/automua"
"Tracker" = "https://github.com/hlfh/automua/issues"
"Source" = "https://github.com/hlfh/automua"
[tool.hatch.version]
path = "automua/__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"/automua",
"/tests",
"/contrib/flask.sh",
"/contrib/setupvenv.sh"
]