forked from ncss/necsus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (37 loc) · 898 Bytes
/
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
[tool.poetry]
name = "NeCSuS"
version = "0.0.0"
description = "Slack, but for NCSS students."
authors = [
"Kenni Bawden <[email protected]>",
"Aleksa Sarai <[email protected]>",
"Samuel Walladge <[email protected]>",
"Tom Kunc <[email protected]>",
"Joel Gibson <[email protected]>",
]
[tool.poetry.dependencies]
python = "~3.10"
setuptools = "*"
# For the main server
uvicorn = {extras = ["standard"], version = "~0.24"}
starlette = "~0.33"
httpx = "~0.25.2"
pypika = "~0.48"
anyio = "~4.1.0"
# For example bots
flask = "~3.0.0"
flask-cors = "^4.0.0"
# For testing
pytest = "~7.4.3"
respx = "^0.20.2"
asgiref = "^3.7.2"
regex = "^2023.12.25"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.ruff]
select = ["E4", "E7", "E9", "F", "I"]
ignore = [
"E711", # Comparison to `None` should be `cond is None`
]