-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
executable file
·71 lines (63 loc) · 2.06 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
70
71
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('pybluetooth/version.py') as f:
exec(f.read())
requires = [
'scapy==2.3.2.dev0',
# scapy dependencies that aren't installed by scapy's setup.py itself:
'dnet==1.12',
'pcapy==0.10.10',
'pyusb==1.0.0b2',
'six==1.10.0',
'pbr==1.9.1',
'enum34==1.1.3'
]
setup(name='pybluetooth',
version=__version__,
description='Python Bluetooth Library',
long_description=open('README.md').read(),
url='https://github.com/pebble/pybluetooth',
author='Pebble Technology Corporation',
author_email='[email protected]',
license='MIT',
packages=find_packages(),
install_requires=requires,
tests_require=[
'pytest',
'pytest-mock',
'mock',
'scapy',
'dnet',
'pcapy',
],
cmdclass={'test': PyTest},
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Topic :: System :: Hardware :: Hardware Drivers',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Embedded Systems',
'Topic :: System :: Networking',
],
zip_safe=True)