Merge branch 'release-0.1' into develop
						commit
						dcced15b3e
					
				| 
						 | 
				
			
			@ -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
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
							
								
								
									
										10
									
								
								setup.py
								
								
								
								
							
							
						
						
									
										10
									
								
								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=[
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Reference in New Issue