-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
32 lines (30 loc) · 935 Bytes
/
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
from setuptools import setup, find_packages
version = '0.3.15'
setup(name="helga-jeopardy",
version=version,
description=('HALP'),
classifiers=[
'Development Status :: 4 - Beta',
'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 jeopardy',
author='Justin Caratzas',
author_email='bigjust@lambdaphil.es',
license='LICENSE',
packages=find_packages(),
install_requires = (
'requests>=2.0.0',
'nltk',
),
include_package_data=True,
py_modules=['helga_jeopardy'],
zip_safe=True,
entry_points = dict(
helga_plugins = [
'jeopardy = helga_jeopardy:jeopardy',
],
),
)