Skip to content

Commit

Permalink
Merge e13568f into 6a7924f
Browse files Browse the repository at this point in the history
  • Loading branch information
cfournie committed Feb 6, 2017
2 parents 6a7924f + e13568f commit 2ae6e28
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 6 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@ htmlcov
.coverage
*.swp
MANIFEST
dist
dist/
build/
2 changes: 1 addition & 1 deletion constraints.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
pip<=4
pip<=7
click<=3
1 change: 1 addition & 0 deletions dev_requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ pylint # Linting
autopep8 # Autolinting
ipdb # Interactive debugger
ipython # Interactive shell
wheel # Used to create wheels

# Modules tested
dnspython # Installed as directory `dns`
Expand Down
2 changes: 1 addition & 1 deletion important/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
# Use of this source code is governed by a MIT-style license that can be found
# in the LICENSE file.

__version__ = '0.1.1'
__version__ = '0.1.2'
8 changes: 7 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,10 @@ ignore=
flake8
exclude=
.git
sourcecode=.
sourcecode=.

[bdist_wheel]
universal = 1

[metadata]
license_file = LICENSE
11 changes: 9 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@
# in the LICENSE file.
import re

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

with open('README.rst') as fh:
long_description = fh.read()
Expand Down Expand Up @@ -48,5 +51,9 @@
'important = important.__main__:check',
],
},
install_requires=['pip>=8', 'click>=5'],
install_requires=[
'pip>=8',
'click>=5',
'setuptools>=0.9',
],
)

0 comments on commit 2ae6e28

Please sign in to comment.