-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (33 loc) · 1.01 KB
/
setup.py
File metadata and controls
36 lines (33 loc) · 1.01 KB
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
from setuptools import find_packages, setup
def get_readme():
readme = ''
try:
import pypandoc
readme = pypandoc.convert('README.md', 'rst')
except (ImportError, IOError):
with open('README.md', 'r') as file_data:
readme = file_data.read()
return readme
setup(
name='pynoci',
version='0.0.1',
author='Daniel Mercader',
author_email='mercaderd@yahoo.es',
description=('Three methods for optimal number of independent components determination'),
long_description=get_readme(),
license='MIT',
keywords='ica noci jade',
url='',
packages=find_packages(),
package_data={
'pynoci': ['*.mat']
},
install_requires=['numpy', 'matplotlib', 'scipy'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3.5',
'Topic :: Scientific/Engineering :: Artificial Intelligence'
]
)