forked from stv0g/transwhat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·53 lines (46 loc) · 1.17 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
46
47
48
49
50
51
52
53
#!/usr/bin/env python
import os
import codecs
from setuptools import setup
def read_file(filename, encoding='utf8'):
"""Read unicode from given file."""
with codecs.open(filename, encoding=encoding) as fd:
return fd.read()
here = os.path.abspath(os.path.dirname(__file__))
readme = read_file(os.path.join(here, 'README.rst'))
setup(name='transwhat',
version='0.2.2',
description='A gateway between the XMPP and the WhatsApp IM networks',
long_description=readme,
keywords='whatsapp xmpp im gateway transport yowsup',
url='https://github.com/stv0g/transwhat',
author='Steffen Vogel',
author_email='[email protected]',
classifiers=[
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Development Status :: 4 - Beta',
'Environment :: Plugins',
'Operating System :: POSIX',
'Topic :: Communications :: Chat'
],
license='GPL-3+',
packages=[
'transWhat',
'Spectrum2'
],
scripts=[
'transWhat/transwhat.py'
],
install_requires=[
'protobuf',
'yowsup2',
'e4u',
'Pillow',
'python-dateutil'
],
entry_points={
'console_scripts': ['transwhat=transWhat.transwhat:main'],
},
zip_safe=False,
include_package_data=True
)