Skip to content

Commit

Permalink
Adds setup.py to support pip install -e .
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonb5 committed Nov 8, 2021
1 parent 3b350d0 commit f278ad2
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
#!/usr/bin/env python

from setuptools import find_packages, setup

with open("README.md") as f:
readme = f.read()

setup(
author="CIME developers",
python_requires=">=3.5",
description=" Common Infrastructure for Modeling the Earth",
long_description=readme,
include_package_data=True,
name="CIME",
packages=find_packages(),
test_suite="CIME.tests",
tests_requires=["pytest"],
url="https://github.com/ESMCI/cime",
version="0.1.0"
)

0 comments on commit f278ad2

Please sign in to comment.