-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
50 lines (44 loc) · 1.64 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
from setuptools import setup
import sys
import pathlib
HERE = pathlib.Path(__file__).parent
README = (HERE / "README.md").read_text()
setup(
name = "pyClimat",
version = "0.0.1",
description= "Python package for climate model output analysis and visualization",
long_description = README,
long_description_content_type = "text/markdown",
keywords = "climate analysis, climate data visualization, eof, Cartopy, Xarray",
url="https://github.com/Dan-Boat/PyClimat",
author="Daniel Boateng",
author_email= "[email protected]",
license="MIT",
packages=["pyClimat"],
install_requires=["numpy",
"pandas",
"xarray",
"statsmodels",
"seaborn",
"scikit-learn",
"scipy",
"eofs",
"Cartopy",
"matplotlib"
],
classifiers = [
'Development Status :: 1 - Planning',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
include_package_data = True,
entry_points = {}
)