forked from dnouri/jabber-the-hutt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (38 loc) · 1.12 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
import os
from setuptools import setup, find_packages
version = '0.0dev'
here = os.path.abspath(os.path.dirname(__file__))
try:
README = open(os.path.join(here, 'README.rst')).read()
CHANGES = open(os.path.join(here, 'CHANGES.txt')).read()
except IOError:
README = CHANGES = ''
install_requires = [
'pyquery',
'pytest',
'sleekxmpp',
'zope.dottedname',
]
setup(name='jabber-the-hut',
version=version,
description="An experimental bot for Jabber chat rooms.",
long_description='\n\n'.join([README, CHANGES]),
classifiers=[
'Programming Language :: Python :: 3.2',
'Development Status :: 3 - Alpha',
],
keywords='xmpp jabber bot chat',
author='Daniel Nouri',
author_email='[email protected]',
url='https://github.com/dnouri/jabber-the-hut',
license='MIT',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=install_requires,
entry_points="""
[console_scripts]
jabber-the-hut = jabberthehut.script:main
# -*- Entry points: -*-
""",
)