Skip to content
This repository has been archived by the owner on Sep 23, 2020. It is now read-only.

Commit

Permalink
Add download and proper version
Browse files Browse the repository at this point in the history
  • Loading branch information
oldpatricka committed Jan 17, 2013
1 parent 97d869e commit 194a95c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,11 @@
from distutils.core import setup
from setuptools import setup, find_packages

VERSION = '0.1.0'

tests_require = ['nose', 'mock']
setup(name='ceiclient',
version='0.1',
version=VERSION,
description='Client tools for the OOI Common Execution Infrastructure',
license='Apache 2.0',
author='Nimbus team',
Expand All @@ -19,4 +21,6 @@
install_requires=['cloudinitd>=1.2', 'dashi>=0.2.1', 'Jinja2', 'PyYAML',],
tests_require=tests_require,
extras_require={'test': tests_require},
url="http://github.com/nimbusproject/ceiclient",
download_url="http://www.nimbusproject.org/downloads/ceiclient-%s.tar.gz" % VERSION,
test_suite='nose.collector')

0 comments on commit 194a95c

Please sign in to comment.