forked from tdryer/hangups
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
55 lines (49 loc) · 1.39 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
54
55
from setuptools import setup
from setuptools.command.test import test as TestCommand
class PyTest(TestCommand):
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = []
self.test_suite = True
def run_tests(self):
import pytest
pytest.main(self.test_args)
with open('README.rst') as f:
readme = f.read()
setup(
name='hangups',
version='0.1.1',
description=('reverse-engineered library and basic client for using '
'Google\'s Hangouts chat protocol'),
long_description=readme,
url='https://github.com/tdryer/hangups',
author='Tom Dryer',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
],
packages=['hangups'],
install_requires=[
'purplex==0.2.2',
'tornado==3.2.1',
'requests==2.2.1',
'urwid==1.2.1',
'obsub==0.2',
'appdirs==1.3.0',
],
tests_require=[
'pytest==2.5.2',
],
cmdclass={'test': PyTest},
entry_points={
'console_scripts': [
'hangups=hangups.__main__:main',
],
},
)