-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
38 lines (35 loc) · 1.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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "argus_ticket_rt"
authors = [{name = "Johanna England", email = "[email protected]"}]
maintainers = [{name = "Johanna England", email = "[email protected]"}]
readme = "README.md"
dependencies = [
"argus-server>=1.15",
"rt>=3.0",
]
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_rt"
Issues = "https://github.com/Uninett/argus_ticket_rt/issues"