forked from Eta0/DiscordAutoDelete
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (46 loc) · 1.26 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "discord-autodelete"
version = "1.2.1"
license = { text = "zlib/libpng License" }
keywords = ["discord", "bot"]
authors = [
{ name="Eta" }
]
description = "Discord bot for expiring messages with per-channel custom time limits."
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"discord.py >= 2.1.0",
"pytimeparse >= 1.1.8",
"aiosqlite >= 0.17.0",
"python-dotenv >= 0.21.0"
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: zlib/libpng License",
"Topic :: Communications :: Chat",
"Development Status :: 4 - Beta",
"Intended Audience :: End Users/Desktop",
"Operating System :: OS Independent",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy"
]
[project.optional-dependencies]
speed = [
"aiohttp[speedups] >= 3.7.4",
'uvloop >= 0.17.0, < 1; sys_platform == "linux"'
]
[project.scripts]
discord-autodelete = "discord_autodelete:main"
[project.entry-points]
[tool.setuptools]
py-modules = ["discord_autodelete"]
packages = []
[tool.black]
line-length = 120
preview = true
[tool.flake8]
ignore = ["E203"]