Final prep for 0.1 release
parent
df89d6796b
commit
3986e68b6b
|
@ -1,6 +1,6 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
## Unreleased
|
## 0.1 (2020/08/26)
|
||||||
### Added
|
### Added
|
||||||
- Prefix can now be passed as argument to init
|
- Prefix can now be passed as argument to init
|
||||||
- Pre-made help module
|
- Pre-made help module
|
||||||
|
|
10
setup.py
10
setup.py
|
@ -3,20 +3,16 @@
|
||||||
import setuptools
|
import setuptools
|
||||||
|
|
||||||
|
|
||||||
with open('README.md', 'r') as readme:
|
|
||||||
long_description = readme.read()
|
|
||||||
|
|
||||||
with open('requirements.txt', 'r') as reqs_file:
|
with open('requirements.txt', 'r') as reqs_file:
|
||||||
reqs = [line.strip() for line in reqs_file.readlines()]
|
reqs = [line.strip() for line in reqs_file.readlines()]
|
||||||
|
|
||||||
setuptools.setup(
|
setuptools.setup(
|
||||||
name='frank-Chewing_Bever',
|
name='frank',
|
||||||
version='0.0.1',
|
version='0.1.0',
|
||||||
author='Jef Roosens',
|
author='Jef Roosens',
|
||||||
author_email='',
|
author_email='',
|
||||||
description='A modular tool for building Discord bots',
|
description='A modular tool for building Discord bots',
|
||||||
long_description=long_description,
|
long_description='See https://gitlab.com/Chewing_Bever/frank for details.',
|
||||||
long_description_content_type='text/markdown',
|
|
||||||
url='https://gitlab.com/Chewing_Bever/frank',
|
url='https://gitlab.com/Chewing_Bever/frank',
|
||||||
packages=setuptools.find_packages(exclude=('tests',)),
|
packages=setuptools.find_packages(exclude=('tests',)),
|
||||||
classifiers=[
|
classifiers=[
|
||||||
|
|
Reference in New Issue