Skip to content

Commit

Permalink
making install more portable
Browse files Browse the repository at this point in the history
  • Loading branch information
jonrkarr committed Dec 4, 2017
1 parent 389fd6f commit b3b176f
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions setup.py
@@ -1,3 +1,16 @@
# install requirements
try:
import configparser
except:
import pip
pip.main(['install', 'configparser'])
try:
import requirements
except:
import pip
pip.main(['install', 'git+https://github.com/davidfischer/requirements-parser.git#egg=requirements_parser'])

# import
import os
import setuptools
import pkg_utils
Expand Down

0 comments on commit b3b176f

Please sign in to comment.