-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (37 loc) · 895 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
[build-system]
build-backend = "pdm.pep517.api"
requires = ["pdm-pep517>=1.0.0"]
[tool.isort]
profile = "black"
[tool.pdm]
[tool.pdm.dev-dependencies]
dev = [
"black<22.0,>=21.12b0",
"flake8<5.0.0,>=4.0.1",
"pdbpp<1.0.0,>=0.10.3",
]
[tool.pdm.build]
includes = []
[project]
# PEP 621 project metadata
# See https://www.python.org/dev/peps/pep-0621/
authors = [
{name = "Patrick Arminio", email = "[email protected]"},
]
dependencies = [
"aiocron<2.0,>=1.8",
"ics<1.0,>=0.7",
"httpx<1.0.0,>=0.21.3",
"python-dotenv<1.0.0,>=0.19.2",
"nextcord<3.0.0.0,>=2.0.0-alpha.6",
"google-api-python-client<3.0.0,>=2.39.0",
"google-auth-httplib2<1.0.0,>=0.1.0",
"google-auth-oauthlib<1.0.0,>=0.5.0",
"setuptools>=65.5.0",
]
description = ""
license = {text = "MIT"}
name = "discord-bot"
requires-python = ">=3.10,<4.0"
version = "0.1.0"
[project.urls]