forked from tdryer/hangups
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
64 lines (58 loc) · 1.7 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
56
57
58
59
60
61
62
63
64
import sys
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
errno = pytest.main(self.test_args)
sys.exit(errno)
with open('README.rst') as f:
readme = f.read()
setup(
name='hangups',
version='0.1.4',
description=('the first third-party instant messaging client for Google '
'Hangouts'),
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.3',
'Programming Language :: Python :: 3.4',
],
packages=['hangups'],
dependency_links=[
'https://github.com/wardi/urwid/tarball/59591b8557#egg=urwid-1.2.2_dev'
],
install_requires=[
'purplex==0.2.4',
'requests==2.2.1',
'appdirs==1.3.0',
'aiohttp==0.9.1',
# git urwid is required for asyncio (see dependency link above):
'urwid==1.2.2-dev',
# Backports for py3.3:
'enum34==1.0',
'asyncio==3.4.1',
],
tests_require=[
'pytest',
],
cmdclass={'test': PyTest},
entry_points={
'console_scripts': [
'hangups=hangups.__main__:main',
],
},
)