-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
46 lines (39 loc) · 1.29 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
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "GuildWatcher"
version = "2.0.0"
dynamic = ["dependencies"]
authors = [
{ name = "Allan Galarza", email = "[email protected]" }
]
maintainers = [
{ name = "Allan Galarza", email = "[email protected]" }
]
license = { text = 'MIT' }
description = "A Discord webhook to track Tibia guild changes."
requires-python = '>=3.8'
readme = "README.md"
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Communications :: Chat',
'Topic :: Games/Entertainment',
'Topic :: Games/Entertainment :: Role-Playing'
]
[project.urls]
"GitHub" = "https://github.com/Galarzaa90/GuildWatcher"
"Coverage: Codecov" = "https://codecov.io/gh/Galarzaa90/GuildWatcher/"
[project.scripts]
guildwatcher = "guildwatcher:scan_guilds"
[tool.setuptools.dynamic]
dependencies = { file = ["requirements.txt"] }