-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 749 Bytes
/
setup.py
File metadata and controls
26 lines (24 loc) · 749 Bytes
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
from setuptools import setup, find_packages
setup(
description='An IRC bot for Megworld',
url='https://github.com/xray7224/MegBot',
author='Jessica Tallon',
maintainer='Matt Molyneaux',
maintainer_email='moggers87+git@moggers87.co.uk',
version='6.1',
packages=find_packages(),
include_package_data=True,
name='megbot',
license='GPLv3',
classifiers=[
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
],
entry_points={
'console_scripts':
['megbot = megbot.bot:main'],
},
test_suite='megbot.tests',
)