-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
41 lines (37 loc) · 1.03 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
"""
created on Sep 22, 2017
@author: Nikola Jajcay, jajcay(at)cs.cas.cz
"""
from setuptools import setup
def readme():
with open("README.rst") as f:
return f.read()
setup(name = "pyclits",
version = "0.2",
description = "Python Climate Time Series package",
long_description = readme(),
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 2.7",
"Topic :: Scientific/Engineering :: Atmospheric Science",
"License :: OSI Approved :: MIT License"
],
keywords = "time series analysis climate data",
url = "https://github.com/jajcayn/pyclits",
author = "Nikola Jajcay",
author_email = "jajcay@cs.cas.cz",
license = "MIT",
packages = ["pyclits"],
install_requires = [
"numpy",
"scipy",
"scikit-learn",
"cython",
"matplotlib",
"netCDF4",
"pathos",
"pywavelets"
],
include_package_data = True,
zip_safe = False)