-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (38 loc) · 1.41 KB
/
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
from setuptools import setup, find_packages
setup(
name="py_discord_html_transcripts",
version="2.2.0",
author="FroostySnoowman",
author_email="[email protected]",
description="A simple Discord chat exporter for Python Discord bots.",
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
url="https://github.com/FroostySnoowman/py-discord-html-transcripts",
packages=find_packages(),
classifiers=[
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Internet",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
"Typing :: Typed",
],
license="GPL-3.0-only",
python_requires=">=3.6",
install_requires=[
"aiohttp",
"pytz",
"grapheme",
"emoji",
],
keywords="chat exporter, discord chat exporter, discord, discordpy, disnake, pycord, nextcord",
)