-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
58 lines (53 loc) · 1.7 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "django-discordbot"
description = "Ein Discordbot für Django"
readme = "README.md"
authors = [{ name = "Rafael Urben", email = "github@rafaelurben.ch" }]
maintainers = [{ name = "Rafael Urben", email = "github@rafaelurben.ch" }]
license = { file = "LICENSE" }
classifiers = [
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
]
requires-python = ">= 3.10"
dependencies = [
"Django>=4.1",
"gunicorn>=20.0.4",
"requests>=2.24.0",
"discord.py>=2.0.0",
"opuslib>=3.0.1",
"ffmpeg>=1.4",
"fuzzywuzzy[speedup]>=0.18.0",
"youtube-dl>=2020.9.6",
"rich>=9.0.1",
"tqdm>=4.43.0",
"dnspython>=2.0.0",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/rafaelurben/django-discordbot/"
GitHub = "https://github.com/rafaelurben/django-discordbot"
Issues = "https://github.com/rafaelurben/django-discordbot/issues"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages]
find = { namespaces = false }
[tool.setuptools.dynamic]
version = { file = ["_version.txt"] }