-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
31 lines (27 loc) · 1020 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
30
31
from setuptools import setup
import subprocess
import os
with open("README.md", "r") as fh:
long_description = fh.read()
if __name__ == "__main__":
setup(name="mlmicrophysics",
version="0.2",
description="Machine learning emulator testbed for microphysics.",
long_description=long_description,
long_description_content_type="text/markdown",
author="David John Gagne and Gabrielle Gantos",
author_email="[email protected]",
license="MIT",
url="https://github.com/NCAR/mlmicrophysics",
packages=["mlmicrophysics"],
install_requires=["numpy",
"scipy",
"pandas",
"matplotlib",
"xarray",
"tensorflow",
"netcdf4",
"scikit-learn",
"pyyaml",
"pyarrow"],
)