-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
29 lines (23 loc) · 839 Bytes
/
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
# -- encoding: utf-8 --
import sys
from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand
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 pytest
errno = pytest.main(self.pytest_args)
sys.exit(errno)
setup(name='sigfeat',
version='0.2alpha',
description='Signal Feature Extraction Framework.',
author='Siegfried Gündert',
author_email='[email protected]',
license='BSD-3-Clause',
packages=find_packages(exclude=('docs', '.git', '__pycache__')),
tests_require=['pytest'],
cmdclass={'test': PyTest},
)