-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
55 lines (45 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
50
51
52
53
54
55
import sys
from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand
long_description = open('README.md', 'r').read()
class PyTest(TestCommand):
user_options = [("pytest-args=", "a", "Arguments to pass to pytest")]
def initialize_options(self):
TestCommand.initialize_options(self)
self.pytest_args = ""
def run_tests(self):
import shlex
# import here, cause outside the eggs aren't loaded
import pytest
errno = pytest.main(shlex.split(self.pytest_args))
sys.exit(errno)
setup(name='oscc-check',
version='0.0.1',
url='https://github.com/PolySync/oscc-check',
author='Shea Newton',
author_email='snewton@polysync.io',
maintainer='PolySync Technologies',
maintainer_email='help@polysync.io',
description='Check that your vehcile and the installed OSCC are in a good state.',
long_description=long_description,
download_url='https://github.com/PolySync/oscc-check',
packages=["oscccan"],
license='MIT',
install_requires=[
'colorama',
'docopt',
'python-can',
],
scripts=['oscc-check.py'],
tests_require=['pytest', 'hypothesis'],
test_suite="tests",
cmdclass={"test": PyTest},
classifiers=[
'Environment :: Console',
'License :: MIT License',
'Natural Language :: English',
'Operating System :: Linux',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
],
)