-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (37 loc) · 1.36 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
import sys
import os
from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand
ver_file = os.path.join(os.path.dirname(__file__), 'peakdetect_delta', 'version.py')
vars = {}
exec(open(ver_file).read(), vars)
# for py.test
class PyTest(TestCommand):
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = []
self.test_suite = True
def run_tests(self):
import pytest
pytest.main(self.test_args)
setup(name='peakdetect_delta',
version=vars['__version__'],
description='find positive splike-like peaks, using Delta_raise and Delta_fall thresholds.',
author="Takaaki AOKI",
author_email='[email protected]',
download_url='https://github.com/takaakiaoki/peakdetect_delta',
url='https://github.com/takaakiaoki/peakdetect_delta',
packages=find_packages(),
package_data={},
scripts=[],
long_description=open('README.rst').read(),
options={},
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3.4",
"License :: OSI Approved :: MIT License",
"Development Status :: 4 - Beta",
"Environment :: Other Environment",
"Operating System :: OS Independent"],
tests_require=['pytest'],
cmdclass={'test': PyTest})