-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
50 lines (43 loc) · 1.56 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
""" Installation module """
import sys
from setuptools import setup
from setuptools.command.test import test as TestCommand
class PyTest(TestCommand):
""" PyTest integration with setuptools """
user_options = [('pytest-args=', 'a', "Arguments to pass to py.test")]
def initialize_options(self):
TestCommand.initialize_options(self)
self.pytest_args = ["hyperion2boblight"]
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = []
self.test_suite = True
def run_tests(self):
#import here, cause outside the eggs aren't loaded
import pytest
errno = pytest.main(self.pytest_args)
sys.exit(errno)
setup(
name='hyperion2boblight',
version='2.0.0',
description='Control a Boblight server with a Hyperion client',
long_description="""This tiny app allow you to use some Hyperion client
(as the Hyperion Remote smartphone app) to control your boblight server.""",
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 3.5',
'License :: OSI Approved :: MIT License'
],
keywords='hyperion boblight',
url='http://github.com/AlexisBRENON/hyperion2boblight',
author='Alexis BRENON',
author_email='[email protected]',
license='MIT',
packages=['hyperion2boblight'],
zip_safe=False,
tests_require=['pytest'],
cmdclass={'test':PyTest},
entry_points={
'console_scripts': ['hyperion2boblight=hyperion2boblight.main:main']
}
)