forked from modoboa/modoboa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (49 loc) · 1.78 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
[build-system]
requires = ["setuptools>=61.0", "setuptools_scm[toml]>=6.4"]
build-backend = "setuptools.build_meta"
[project]
name = "modoboa"
dynamic = [
"version",
"dependencies",
"optional-dependencies"
]
authors = [
{ name="Antoine Nguyen", email="[email protected]" },
]
description = "Mail hosting made simple"
readme = "README.rst"
requires-python = ">=3.8"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django :: 4.2",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: ISC License (ISCL)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Communications :: Email",
"Topic :: Internet :: WWW/HTTP",
]
keywords = ["email"]
license = {file = "LICENSE"}
[project.scripts]
modoboa-cli = "modoboa:modoboa_admin"
[project.urls]
Homepage = "http://modoboa.org/"
Documentation = "https://modoboa.readthedocs.io/en/latest/"
Repository = "https://github.com/modoboa/modoboa"
Changelog = "https://github.com/modoboa/modoboa/blob/master/CHANGELOG.md"
Issues = "https://github.com/modoboa/modoboa/issues"
[tool.setuptools.dynamic]
version = {attr = "modoboa.version.get_version"}
dependencies = {file = ["requirements.txt"]}
optional-dependencies.dev = { file = ["dev-requirements.txt"] }
optional-dependencies.test = { file = ["test-requirements.txt"] }
optional-dependencies.ldap = { file = ["ldap-requirements.txt"] }
optional-dependencies.mysql = { file = ["mysql-requirements.txt"] }
optional-dependencies.postgresql = { file = ["postgresql-requirements.txt"] }