Skip to content

Commit

Permalink
Clean up setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Jamie Chen committed Sep 24, 2012
1 parent a28b222 commit 72165fc
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,14 @@
if sys.platform == 'darwin':
os.environ['C_INCLUDE_PATH'] = '/usr/local/include'

version = '1.2.0'

setupdict = {
'name' : 'epu',
'version' : '1.2.0',
'version' : version,
'description' : 'OOICI CEI Elastic Processing Unit Services and Agents',
'url': 'https://confluence.oceanobservatories.org/display/CIDev/Common+Execution+Infrastructure+Development',
'download_url' : 'http://ooici.net/packages',
'download_url' : 'http://sddevrepo.oceanobservatories.org/releases',
'license' : 'Apache 2.0',
'author' : 'CEI',
'author_email' : 'tfreeman@mcs.anl.gov',
Expand All @@ -35,7 +37,7 @@
from setuptools import setup, find_packages
setupdict['packages'] = find_packages()

setupdict['dependency_links'] = ['http://ooici.net/releases']
setupdict['dependency_links'] = ['http://sddevrepo.oceanobservatories.org/releases']
setupdict['test_suite'] = 'epu'

# ssl package won't install on 2.6+, but is required otherwise.
Expand Down

0 comments on commit 72165fc

Please sign in to comment.