forked from pyhoneybot/honeybot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (33 loc) · 1.13 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# setup.py
from setuptools import setup, find_packages
import sys
if not sys.version_info[0] == 3:
sys.exit('Sorry, python2 is not supported')
project_name = 'HoneyBot'
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='[email protected]',
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'
},
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'
]
)