-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (35 loc) · 1.44 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
#!/usr/bin/env python3
import setuptools
import py_peak_splitting
# load the README file and use it as the long_description for PyPI
def readme():
with open('README.md', 'r') as f:
return f.read()
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
# package configuration - for reference see:
# https://setuptools.readthedocs.io/en/latest/setuptools.html#id9
setuptools.setup(
name='py_peak_splitting',
version=py_peak_splitting.__version__,
description='Utilities to de-noise time series from random telegraph noise / peak splitting artefacts',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/OWI-Lab/py_peak_splitting',
author='D.J.M. Fallais',
author_email='[email protected]',
license='Creative Commons BY-SA 4.0',
keywords = ['engineering', 'peak-splitting', 'RTN', 'hampel', 'threshold'],
packages=setuptools.find_packages(),
install_requires=['numpy', 'matplotlib','plotly','sklearn',],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
#'License :: OSI Approved :: CC-NC-BY-SA 4.0',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
)