forked from NCAR/ctsm_python_gallery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (26 loc) · 785 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
#!/usr/bin/env python
"""The setup script."""
import sys
from setuptools import setup, find_packages
# import versioneer
# with open("requirements.txt") as f:
# INSTALL_REQUIRES = f.read().strip().split("\n")
with open("README.md") as f:
LONG_DESCRIPTION = f.read()
PYTHON_REQUIRES = '>=3.6'
description = ("Utilities for working with ctsm data")
setup(
name="ctsm_py",
description=description,
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
maintainer="Joe Hamman",
maintainer_email="[email protected]",
url="https://github.com/ncar/ctsm_py",
py_modules=['ctsm_py'],
packages=find_packages(),
python_requires=PYTHON_REQUIRES,
license="Apache",
keywords="ctsm_py",
version='0.0.1',
)