-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (27 loc) · 1018 Bytes
/
setup.py
File metadata and controls
30 lines (27 loc) · 1018 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
30
from setuptools import setup, find_packages
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.md", "r", encoding="utf-8") as fp:
long_description = fp.read()
setup(
name="iptpy",
version="0.0.0",
author="Yuan Sun",
author_email="sunyuanzju@outlook.com",
url="https://github.com/envdes/IPTpy",
description="ipypy is a Python-based tool designed to process input data for CESM.",
long_description=long_description,
long_description_content_type="text/x-rst",
license="MIT",
classifiers=classifiers,
install_requires=['numpy', 'pandas', 'xarray', 'datetime', 'esmpy', 'xesmf', 'netCDF4'],
packages=find_packages(where="src"),
package_dir={"": "src"},
)