-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
38 lines (36 loc) · 1.03 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
from setuptools import setup, find_packages
version = '0.4.11.1'
setup(
name="helga-mimic",
version=version,
description=('mimics users or channels'),
long_description=open('README.rst').read(),
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
keywords='irc bot mimic',
author='Justin Caratzas',
author_email='[email protected]',
license='LICENSE',
packages=find_packages(),
install_requires = (
'cobe==2.1.2',
'helga-alias',
'helga-oral-history',
'helga-twitter',
'markovify==0.6.0',
'requests',
),
include_package_data=True,
py_modules=['helga_mimic'],
zip_safe=True,
entry_points = dict(
helga_plugins = [
'mimic = helga_mimic:MimicPlugin',
],
),
)