Final prep for 0.1 release

master
Jef Roosens 2020-08-26 15:08:41 +02:00
parent df89d6796b
commit 3986e68b6b
2 changed files with 4 additions and 8 deletions

View File

@ -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

View File

@ -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=[