-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (26 loc) · 896 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
24
25
26
27
28
29
from setuptools import setup, find_packages, Extension
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="pmcpy",
version="0.0.3",
author="Zhonghua Zheng",
author_email="zhonghua.zheng@outlook.com",
url="https://github.com/zhonghua-zheng/pmcpy",
description="A Python package for PartMC post-processing",
long_description=long_description,
license="MIT",
classifiers=classifiers,
install_requires=['numpy', 'pandas', 'netcdf4', 'xarray'],
packages=find_packages(),
)