-
-
Notifications
You must be signed in to change notification settings - Fork 42
/
setup.cfg
65 lines (61 loc) · 1.88 KB
/
setup.cfg
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
60
61
62
63
64
65
[metadata]
name = Red-Dashboard
version = attr: reddash.__version__
description = An easy-to-use interactive web dashboard to control your Redbot.
license = AGPL-3.0
long_description = file: README.md
long_description_content_type = text/markdown; charset=UTF-8; variant=GFM
author = Neuro Assassin
author_email = [email protected]
url = https://github.com/Cog-Creators/Red-Dashboard
project_urls =
Third Party Discord Server = https://discord.gg/vQZTdB9
Documentation = https://red-dashboard.readthedocs.io/en/latest/
Donate on Patreon = https://www.patreon.com/neuroassassin
Source Code = https://github.com/NeuroAssassin/Red-Dashboard
Red Source Code = https://github.com/Cog-Creators/Red-DiscordBot
Red Discord Server = https://discord.gg/red
classifiers =
Development Status :: 3 - Alpha
Framework :: Flask
Intended Audience :: Developers
Intended Audience :: End Users/Desktop
License :: OSI Approved :: GNU Affero General Public License v3
Natural Language :: English
Operating System :: MacOS :: MacOS X
Operating System :: Microsoft :: Windows
Operating System :: POSIX :: Linux
Programming Language :: Python :: 3.8
Topic :: Internet :: WWW/HTTP :: Dynamic Content :: Content Management System
[options]
packages =
find:
python_requires = >=3.8.1,<3.9
install_requires =
flask==1.1.2
itsdangerous==2.0.1
requests==2.23.0
cryptography==3.3.2
websocket_client==0.57.0
waitress==1.4.3
rich==1.3.1
fuzzywuzzy==0.18.0
python-Levenshtein==0.12.0
flask-babel==1.0.0
pyjwt==1.7.1
appdirs==1.4.4
include_package_data = True
[options.extras_require]
style =
black==19.10b0
docs =
Sphinx==4.4.0
sphinx-rtd-theme==1.0.0
sphinx-prompt==1.5.0
[options.entry_points]
console_scripts =
reddash = reddash.__main__:main
[options.packages.find]
include =
reddash
reddash.*