Skip to content

Commit

Permalink
add setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
tschaume committed Jan 13, 2014
1 parent a73123f commit b159def
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions setup.py
@@ -0,0 +1,17 @@
from ez_setup import use_setuptools
use_setuptools()

from setuptools import setup, find_packages
setup(
name = 'ccsgp_get_started',
version = '1.0',
description = 'get started with ccsp',
license = 'MIT',
author = 'Patrick Huck',
author_email = 'phuck@lbl.gov',
url = 'https://github.com/tschaume/ccsgp_get_started',
packages = find_packages(),
install_requires = [
'wsgiref==0.1.2', 'numpy==1.8.0', 'gnuplot-py==1.8', 'h5py==2.2.1'
]
)

0 comments on commit b159def

Please sign in to comment.