Skip to content

Commit

Permalink
Versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
mahtoid committed Jun 12, 2022
1 parent ff5c359 commit 02b60ae
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
from setuptools import setup, find_packages

with open("README.md") as fh:
long_description = fh.read()
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()

setup(
name="chat_exporter",
version="2.1",
version="2.2",
author="mahtoid",
author_email="[email protected]",
description="A simple Discord chat exporter for Python Discord bots.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/mahtoid/DiscordChatExporterPy",
packages=find_packages(),
package_data={'': [r'chat_exporter/html/*.html']},
Expand Down

0 comments on commit 02b60ae

Please sign in to comment.