-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
35 lines (32 loc) · 903 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
32
33
34
35
""" set up file """
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
SETUP_REQUIRES = ["pytest-runner"]
TESTS_REQUIRE = ["pytest >= 4.0", "coverage"]
INSTALL_REQUIRES = [
"scipy>=1.7.0",
"numpy",
"f90nml",
"astropy",
"xarray",
"pyyaml",
"pre-commit",
]
setup(
name="gcm_toolkit",
version="v0.3.1",
packages=find_packages(),
include_package_data=True,
scripts=["bin/convert_to_gcmt"],
url="https://github.com/exorad/gcmt",
license="MIT",
author="Aaron David Schneider",
author_email="[email protected]",
description="postprocessing stuff",
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=INSTALL_REQUIRES,
setup_requires=SETUP_REQUIRES,
tests_require=TESTS_REQUIRE,
)