forked from alphaparrot/ExoPlaSim
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (20 loc) · 658 Bytes
/
setup.py
File metadata and controls
21 lines (20 loc) · 658 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup
import os
setup(
name='exoplasim',
version='3.0.0a26',
packages=['exoplasim',],
zip_safe=False,
install_requires=["numpy>=1.16","matplotlib","scipy"],
extras_require = {"netCDF4": ["netCDF4"],
"HDF5": ["h5py"]},
include_package_data=True,
author='Adiv Paradise',
author_email='paradise.astro@gmail.com',
license='GNU General Public License',
license_files=["LICENSE.TXT",],
url='https://github.com/alphaparrot/ExoPlaSim',
description='Exoplanet GCM',
long_description_content_type='text/x-rst',
long_description=open('README.rst').read(),
)