diff --git a/CHANGELOG.md b/CHANGELOG.md index b54bcd0..bde1806 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## 0.1 (2020/08/26) ### Added - Prefix can now be passed as argument to init - Pre-made help module diff --git a/setup.py b/setup.py index 733b93d..2295792 100644 --- a/setup.py +++ b/setup.py @@ -3,20 +3,16 @@ import setuptools -with open('README.md', 'r') as readme: - long_description = readme.read() - with open('requirements.txt', 'r') as reqs_file: reqs = [line.strip() for line in reqs_file.readlines()] setuptools.setup( - name='frank-Chewing_Bever', - version='0.0.1', + name='frank', + version='0.1.0', author='Jef Roosens', author_email='', description='A modular tool for building Discord bots', - long_description=long_description, - long_description_content_type='text/markdown', + long_description='See https://gitlab.com/Chewing_Bever/frank for details.', url='https://gitlab.com/Chewing_Bever/frank', packages=setuptools.find_packages(exclude=('tests',)), classifiers=[