-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
59 lines (53 loc) · 2 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
53
54
55
56
57
58
59
#!/usr/bin/env python
import sys
from setuptools import setup, find_packages
from os import path
from decompose.version import __version__
if sys.version_info < (3, 6, 0):
sys.stderr.write("ERROR: You need Python 3.6 or later to use decompose.\n")
exit(1)
description = 'Blind source separation based on the probabilistic tensor ' \
'factorisation framework'
long_description = '''
Decompose -- Blind source separation framework
==============================================
DECOMPOSE is a probabilistic blind source separation framework that
can be flexibly adjusted to the data, is extensible and easy to use,
adapts to individual sources and handles large-scale data through
algorithmic efficiency. DECOMPOSE encompasses and generalises many
traditional BSS algorithms such as PCA, ICA and NMF.
'''.lstrip()
here = path.abspath(path.dirname(__file__))
setup(
name='decompose',
version=__version__,
description=description,
long_description=long_description,
url='https://github.com/bethgelab/decompose',
author='Alexander Boettcher',
author_email='[email protected]',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Information Analysis',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
],
keywords='data-analysis machine-learning blind-source-separation',
packages=find_packages(),
install_requires=['tensorflow>=1.7',
'numpy',
'mypy'],
extras_require={
'test': ['pytest',
'scipy'],
},
project_urls={
'Bug Reports': 'https://github.com/bethgelab/decompose/issues',
'Source': 'https://github.com/bethgelab/decompose/',
},
)