-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
35 lines (31 loc) · 1.05 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
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
setup(name='independent_vector_analysis',
version='0.3.4',
description='Implementation of IVA-G and IVA-L-SOS',
long_description=readme(),
long_description_content_type='text/markdown',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
keywords='iva, independent vector analysis, bss, multiset analysis',
url='https://github.com/SSTGroup/independent_vector_analysis',
author='Isabell Lehmann',
author_email='[email protected]',
license='LICENSE',
packages=['independent_vector_analysis'],
python_requires='>=3.6',
install_requires=[
'numpy',
'scipy',
'pytest',
'joblib',
'tqdm',
'matplotlib',
],
include_package_data=True, # to include non .py-files listed in MANIFEST.in
zip_safe=False)