Skip to content

Commit

Permalink
Changes to setup.py
Browse files Browse the repository at this point in the history
Fix a typo in one of the filenames, bump the version to 2.1 and increase
the minimum ddn.sfa.api version
  • Loading branch information
rgmiller committed Jun 16, 2015
1 parent a745509 commit d4f4ccd
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,23 +9,22 @@

from distutils.core import setup


setup (
name = "DDNTool",
description = "A tool for monitoring performance of multiple DDN SFA controllers",
author = "Ross Miller",
author_email = "rgmiller@ornl.gov",

version = "2.0Beta",
version = "2.1",
url = "http://www.olcf.ornl.gov", # don't have a web page dedicated to the tool

requires = ["ddn.sfa.api (>= 1.5.3)"],
requires = ["ddn.sfa.api (>= 2.3.0)"],

package_dir = {"":"src"},
py_modules = ["bracket_expand"],
packages = ["SFAClientUtils" ],

scripts = ["src/DDNTool.py" ], # scripts list isn't affected by the package_dir dict

data_files = [('/etc/init', ['src/init/DDNTool.conf']),('/etc/', ['src/ddntool.sample.conf'])] # this is the upstart config file and sample configuration file
data_files = [('/etc/init', ['src/init/DDNTool.conf']),('/etc/', ['src/ddntool.conf.sample'])] # this is the upstart config file and sample configuration file
)

0 comments on commit d4f4ccd

Please sign in to comment.