Skip to content

Commit

Permalink
ConfigObj -> configobj
Browse files Browse the repository at this point in the history
  • Loading branch information
jaingaurav committed Dec 12, 2015
1 parent 4cdba46 commit d09ce62
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def running_under_virtualenv():
(os.path.join(base_files, 'collectors'), glob('conf/collectors/*')),
(os.path.join(base_files, 'handlers'), glob('conf/handlers/*')),
]
install_requires = ['ConfigObj', 'psutil', ],
install_requires = ['configobj', 'psutil', ],

else:
data_files = [
Expand Down Expand Up @@ -79,13 +79,13 @@ def running_under_virtualenv():

# Are we in a virtenv?
if running_under_virtualenv():
install_requires = ['ConfigObj', 'psutil', ]
install_requires = ['configobj', 'psutil', ]
else:
if distro == ['debian', 'ubuntu']:
install_requires = ['python-configobj', 'python-psutil', ]
# Default back to pip style requires
else:
install_requires = ['ConfigObj', 'psutil', ]
install_requires = ['configobj', 'psutil', ]


def get_version():
Expand Down

0 comments on commit d09ce62

Please sign in to comment.