-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
42 lines (36 loc) · 1.12 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
import setuptools
"""
Install locally:
>>> python setup.py install
"""
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
def read_requirements(fname):
requirements = []
with open(fname, "r") as fh:
for line in fh:
line = line.strip()
if not line or line.startswith("#"):
continue
requirements.append(line)
setuptools.setup(
name="dartwrf",
version="2024.1",
author="Lukas Kugler",
author_email="lukas.kugler@univie.ac.at",
description="Observing system simulation experiments with WRF and DART",
long_description=long_description,
long_description_content_type="Markdown",
url="https://github.com/lkugler/DART-WRF",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache 2.0 License",
"Operating System :: OS Independent",
],
python_requires=">=3.8.3",
install_requires=["xarray",
"netCDF4",
"slurmpy",
"pysolar>=0.10"],
)