forked from mahtoid/DiscordChatExporterPy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
24 lines (22 loc) · 765 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup, find_packages
with open("README.rst") as fh:
long_description = fh.read()
setup(
name="chat_exporter",
version="1.7.2",
author="mahtoid",
description="A simple Discord chat exporter for Python Discord bots.",
long_description=long_description,
url="https://github.com/mahtoid/DiscordChatExporterPy",
packages=find_packages(),
package_data={'': [r'chat_exporter/chat_exporter_html/*.html']},
include_package_data=True,
license="GPL",
install_requires=["discord.py", "aiohttp", "pytz", "grapheme", "emoji"],
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
keywords="chat exporter",
)