forked from kyleterry/tenyks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·45 lines (42 loc) · 1.15 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
41
42
43
44
45
#!/usr/bin/env python
from setuptools import setup, find_packages
import sys, os
version = '0.2.1'
packages = [
'tenyks',
'tenyks.client',
]
setup(name='tenyks',
version=version,
description="Redis powered IRC bot",
long_description="""\
""",
classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
keywords='irc bot redis',
author='Kyle Terry',
author_email='[email protected]',
url='https://github.com/kyleterry/tenyks',
license='LICENSE',
packages=packages,
package_dir={'tenyks': 'tenyks'},
package_data={'tenyks': ['*.pem', '*.dist', 'client/*.dist']},
include_package_data=True,
zip_safe=False,
test_suite='tests',
install_requires=[
'gevent',
'redis',
'nose',
'unittest2',
'clint',
'peewee',
'jinja2',
],
entry_points={
'console_scripts': [
'tenyks = tenyks.core:main',
'tenyksmkconfig = tenyks.config:make_config',
'tcmkconfig = tenyks.client.config:make_config'
]
},
)