-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
61 lines (53 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
53
54
55
56
57
58
59
60
61
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "oxl-ansible-webui"
authors = [
{name = "OXL IT-Services", email = "[email protected]"},
]
description = "Basic WebUI for using Ansible"
readme = "README.md"
requires-python = ">=3.11"
keywords = ["ansible", "webui", "automation", "iac"]
license = {file = "LICENSE.txt"}
classifiers = [
'Programming Language :: Python :: 3',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Framework :: Django',
]
dynamic = ["dependencies", "version"]
[project.urls]
Homepage = "https://github.com/O-X-L/ansible-webui"
Documentation = "https://ansible-webui.OXL.app/"
Repository = "https://github.com/O-X-L/ansible-webui.git"
Issues = "https://github.com/O-X-L/ansible-webui/issues"
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
version = {file = ["VERSION"]}
[project.optional-dependencies]
mysql = [
"mysqlclient",
]
psql = [
"psycopg[binary,pool]",
]
saml = [
"grafana-django-saml2-auth",
]
ara = [
"ara",
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"*" = ["*.html", "*.js", "*.css", "*.svg", "*.txt"]
[project.scripts]
oxl-ansible-webui = "oxl_ansible_webui.__script__:main"
oxl-ansible-webui-cli = "oxl_ansible_webui.__script__:cli"
oxl-ansible-webui-manage = "oxl_ansible_webui.__script__:manage"
[tool.pyproject-appimage]
script = "oxl-ansible-webui"
output = "OXL-Ansible-WebUI.AppImage"
icon = "docs/source/_static/img/logo.svg"
python-version = "3.11"