-
Notifications
You must be signed in to change notification settings - Fork 29
/
setup.py
69 lines (59 loc) · 1.99 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
65
66
67
68
69
__author__ = 'katharine'
from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand
import sys
class PyTest(TestCommand):
def initialize_options(self):
TestCommand.initialize_options(self)
self.pytest_args = []
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = []
self.test_suite = True
def run_tests(self):
# import here because outside the eggs aren't loaded
import pytest
errno = pytest.main(["-v"])
sys.exit(errno)
__version__= None # Overwritten by executing version.py.
with open('libpebble2/version.py') as f:
exec(f.read())
requires = [
'websocket-client>=0.31.0',
'pyserial>=2.7',
'six>=1.9.0',
]
if sys.version_info < (3, 4, 0):
requires.append('enum34>=1.0.4')
setup(name='libpebble2',
version=__version__,
description='Library for communicating with pebbles over pebble protocol',
long_description=open('README.rst').read(),
url='https://github.com/pebble/libpebble2',
author='Pebble Technology Corporation',
author_email='[email protected]',
license='MIT',
packages=find_packages(),
install_requires=requires,
extras_require={
'pulse': ['pebble.pulse2>=0.0.5'],
},
tests_require=[
'pytest',
'pytest-mock',
],
cmdclass={'test': PyTest},
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Embedded Systems',
],
zip_safe=True)