-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
52 lines (48 loc) · 1.96 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
import os.path as op
from setuptools import setup
with open('README.rst', 'r') as fid:
long_description = fid.read()
# get the version (don't import mne here, so dependencies are not needed)
version = None
with open(op.join('pymultifracs', '_version.py'), 'r') as fid:
for line in (line.strip() for line in fid):
if line.startswith('__version__'):
version = line.split('=')[1].strip().strip('\'')
break
if version is None:
raise RuntimeError('Could not determine version')
setup(name='pymultifracs',
version=version,
description='Implements wavelet based fractal and multifractal analysis '
'of 1d signals.',
url='https://github.com/neurospin/pymultifracs',
author='Omar Darwiche Domingues, Merlin Dumeur',
author_email='',
license='MIT',
packages=['pymultifracs'],
install_requires=[
'numpy', 'scipy', 'scikit-learn', 'pywavelets', 'seaborn',
'recombinator', 'statsmodels',
],
zip_safe=False,
python_requires='>=3.7',
long_description=long_description,
long_description_content_type='text/x-rst',
classifiers=['Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'License :: OSI Approved',
'Programming Language :: Python',
'Topic :: Software Development',
'Topic :: Scientific/Engineering',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS',
'Programming Language :: Python :: 3'],
project_urls={
'Documentation': 'https://neurospin.github.io/pymultifracs/',
'Source': 'https://github.com/neurospin/pymultifracs',
'Tracker': 'https://github.com/neurospin/pymultifracs/issues/',
},
platforms='any',
)