Skip to content

Commit

Permalink
Updated setup.py to read README.md (#167)
Browse files Browse the repository at this point in the history
* Started working on setup.py

* Updated the long description in setup.py to read README.md
  • Loading branch information
Dizzerin authored and Abdur-rahmaanJ committed Jun 3, 2019
1 parent 8439e53 commit d097b45
Showing 1 changed file with 24 additions and 31 deletions.
55 changes: 24 additions & 31 deletions setup.py
Expand Up @@ -7,41 +7,34 @@
sys.exit('Sorry, python2 is not supported')

project_name = 'HoneyBot'
long_description = '''
HoneyBot is an IRC bot written in python3,
and distributed under MIT license.

Current features include:
- OOP architecture
- keyword parameters
- password security with config file [disabled for now]
- plugins like calc, self trivia, quotes, and many more
'''
readme_file = open("README.md", "r", encoding="utf8")
long_description = readme_file.read()

setup(
name = project_name,
version = '5.0.0',
description = 'HoneyBot is a python-based IRC bot. (python3)',
long_description = long_description,
url = 'https://github.com/Abdur-rahmaanJ/honeybot',
download_url = 'https://github.com/Abdur-rahmaanJ/honeybot/tags',
author = 'Abdur-Rahmaan Janhangeer',
author_email = 'arj.python@gmail.com',
license = 'MIT',
include_package_data = True,
name=project_name,
version='5.0.0',
description='HoneyBot is a python-based IRC bot. (python3)',
long_description=long_description,
url='https://github.com/Abdur-rahmaanJ/honeybot',
download_url='https://github.com/Abdur-rahmaanJ/honeybot/tags',
author='Abdur-Rahmaan Janhangeer',
author_email='arj.python@gmail.com',
license='MIT',
include_package_data=True,

packages = ['monopoly_assets', 'poker_assets'],
package_dir = {
'monopoly_assets' : 'honeybot/plugins/monopoly_assets',
'poker_assets' : 'honeybot/plugins/poker_assets'
packages=['monopoly_assets', 'poker_assets'],
package_dir={
'monopoly_assets': 'honeybot/plugins/monopoly_assets',
'poker_assets': 'honeybot/plugins/poker_assets'
},

python_requires='>=3.0',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Topic :: Utilities',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7'
]
)
'Development Status :: 5 - Production/Stable',
'Topic :: Utilities',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7'
]
)

0 comments on commit d097b45

Please sign in to comment.