-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
112 lines (88 loc) · 2.14 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
##
# Project settings
##
[project]
name = "ranger-ims-server"
dynamic = ["version"]
description = "Ranger Incident Management System"
readme = "README.rst"
license = {file = "LICENSE.txt"}
# Requirements
requires-python = ">=3.13"
dependencies = [
"arrow==1.3.0",
"attrs==24.2.0",
"bcrypt==4.2.0",
"cattrs==24.1.2",
"cryptography==43.0.3",
"hyperlink==21.0.0",
"jwcrypto==1.5.6",
"klein==24.8.0",
"pymysql==1.1.1",
"pyopenssl==24.2.1",
"pyyaml==6.0.2",
"service-identity==24.2.0",
"twisted==24.10.0",
"werkzeug==3.1.3",
"zope-interface==7.1.1",
]
# Authors/maintainers
authors = [
{name="Wilfredo Sánchez Vega", email="tool@burningman.org"},
]
maintainers = [
{name = "Burning Man Project, Black Rock Rangers", email = "ranger-tech-ninjas@burningman.org"},
]
# Search metadata
classifiers = [
"Framework :: Twisted",
"Intended Audience :: Information Technology",
"Intended Audience :: Other Audience",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.13",
"Topic :: Office/Business",
]
keywords = ["incident management", "ranger"]
[project.scripts]
ims = "ims.run:Command.main"
[project.urls]
Homepage = "https://github.com/burningmantech/ranger-ims-server"
#Documentation = ""
Repository = "https://github.com/burningmantech/ranger-ims-server.git"
Issues = "https://github.com/burningmantech/ranger-ims-server/issues"
Changelog = "https://github.com/burningmantech/ranger-ims-server/blob/master/CHANGELOG.md"
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
##
# Black
##
[tool.black]
line-length = 80
target-version = ["py313"]
##
# Setuptools
##
[tool.setuptools.dynamic]
version = {attr = "ims.__version__"}
[tool.setuptools.packages.find]
where = ["src"]
##
# uv
##
[tool.uv]
default-groups = []
[dependency-groups]
unit = [
"coverage==7.6.1",
"docker==7.1.0",
"hypothesis==6.112.4",
"mock==5.1.0",
]
mypy = [
"mypy-zope==1.0.9",
"mypy==1.13.0",
"types-pymysql==1.1.0.20240524",
"types-pyyaml==6.0.12.20240917",
]