forked from Yefee/xMCA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
23 lines (22 loc) · 794 Bytes
/
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
from setuptools import setup, find_packages
setup(name='xMCA',
version='0.1',
description='Maximum Covariance Analysis in xarray.',
url='https://github.com/Yefee/xMCA',
author='Chengfei He',
author_email='[email protected]',
include_package_data=True,
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
keywords='statistical analysis MCA SVD xarray',
license='MIT',
# packages=['xcesm','config'],
packages=find_packages(),
package_data={'xMCA': ['examples/data/*.nc']},
install_requires=['xarray', 'numpy'],
zip_safe=False)
print(find_packages())