Skip to content

Commit

Permalink
Make setuptools a requirement for building
Browse files Browse the repository at this point in the history
See Issue #186
  • Loading branch information
bradleyjones committed Oct 3, 2018
1 parent 13bc80a commit a91b011
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
setuptools
pyparsing
six
5 changes: 1 addition & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-

from setuptools import setup

try:
from setuptools import setup
except ImportError:
from distutils.core import setup

with open('requirements.txt') as rf:
requirements = rf.readlines()
Expand Down

0 comments on commit a91b011

Please sign in to comment.