forked from lehmannro/pyhkal2
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 752 Bytes
/
setup.py
File metadata and controls
28 lines (26 loc) · 752 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
27
28
#!/usr/bin/env python
from setuptools import setup
#import pyhkal
setup(name='PyHKAL',
# version=pyhkal.__version__,
description="IRC bot with bling bling",
# long_description="",
url="http://github.com/lehmannro/pyhkal2/",
# author="",
# author_email="",
# license="",
packages=['pyhkal', 'pyhkal.contrib', 'pyhkal.test'],
package_dir={'pyhkal.contrib': 'contrib', 'pyhkal.test': 'test'},
install_requires=[
'twisted',
'paisley',
'pyopenssl',
'oauth',
'twittytwister',
'PyYAML',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Topic :: Communications :: Chat :: Internet Relay Chat',
],
)