-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
59 lines (53 loc) · 1.74 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
[project]
name = "les-louisdelatech"
version = "0.0.0"
description = "LouisDeLaTech is a discord bot manager for Lyon e-Sport"
readme = "README.md"
authors = [
{name = "Ludovic Ortega", email = "[email protected]"},
{name = "Etienne 'PoPs' G.", email = "[email protected]"},
{name = "Pierre 'DrumSlayer' Sarret", email = "[email protected]"}
]
keywords = ["google", "discord"]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"License :: OSI Approved :: CEA CNRS Inria Logiciel Libre License, version 2.1 (CeCILL-2.1)",
"Topic :: Utilities",
]
requires-python = ">=3.9,<4.0.0"
dependencies = [
"discord-py~=2.4.0",
"Jinja2~=3.1.4",
"google-api-python-client~=2.149.0",
"google-auth-httplib2~=0.2.0",
"requests-oauthlib~=2.0.0",
"pyotp~=2.9.0",
"tortoise-orm>=0.19.1,<0.21.0",
"aiosqlite~=0.17.0",
"cryptography~=43.0.1",
"sentry-sdk~=2.17.0",
"httpx~=0.27.2",
"tomli~=2.0.2",
"unidecode~=1.3.8",
"phonenumbers~=8.13.47",
]
[project.urls]
Homepage = "https://github.com/lyon-esport/LouisDeLaTech"
Repository = "https://github.com/lyon-esport/LouisDeLaTech"
Issues = "https://github.com/lyon-esport/LouisDeLaTech/issues"
[project.optional-dependencies]
dev = [
"ruff~=0.7.0"
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/les_louisdelatech"]