-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
39 lines (36 loc) · 1.17 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "argus_ticket_gitlab"
authors = [{name = "Johanna England", email = "johanna.england@sikt.no"}]
maintainers = [{name = "Johanna England", email = "johanna.england@sikt.no"}]
readme = "README.md"
dependencies = [
"argus-server>=1.15",
"markdownify>=0.11",
"python-gitlab>=3.12",
]
requires-python = ">=3.8"
classifiers = [
"Framework :: Django",
"Framework :: Django :: 4.2",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: System :: Monitoring",
]
dynamic = ["version", "description"]
[project.optional-dependencies]
test = [
"tox",
"coverage",
]
[project.urls]
Home = "https://github.com/Uninett/argus_ticket_gitlab"
Issues = "https://github.com/Uninett/argus_ticket_gitlab/issues"