forked from zhonghua-zheng/pyEOF
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (26 loc) · 936 Bytes
/
setup.py
File metadata and controls
29 lines (26 loc) · 936 Bytes
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
from setuptools import setup, find_packages
import os
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Atmospheric Science"
]
with open("README.rst", "r") as fp:
long_description = fp.read()
setup(
name="pyEOF",
version="0.0.0",
author="Zhonghua Zheng",
author_email="zhonghua.zheng@outlook.com",
url="https://github.com/zzheng93/pyEOF",
description="Empirical Orthogonal Function (EOF) analysis and Rotated EOF analysis in Python",
long_description=long_description,
license="MIT",
classifiers=classifiers,
install_requires=['numpy', 'pandas', 'scipy', 'scikit-learn', 'rpy2', 'tzlocal'],
packages=find_packages()
)