-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
54 lines (51 loc) · 1.45 KB
/
setup.py
File metadata and controls
54 lines (51 loc) · 1.45 KB
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
import os
from setuptools import find_packages, setup
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='discord_logview',
version='2.0.2',
packages=find_packages(),
include_package_data=True,
license='MIT License',
description='A simple app to beautify Discord log files.',
url='https://logs.discord.website',
author='EJH2',
author_email='me@ej.gl',
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Framework :: Django :: 2.2',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
install_requires=[
"natural",
"celery",
"celery-progress",
"channels",
"channels-redis",
"demoji",
"django",
"django-allauth",
"djangorestframework",
"drf-yasg",
"itsdangerous",
"pendulum",
"psycopg2",
"python-decouple",
"redis",
"requests",
"sentry-sdk",
"shortuuid",
"dispy_markdown @ git+https://github.com/EJH2/dispy-markdown.git"
],
extras_require={
'win': ["gevent"],
'test': ["responses"]
}
)