Skip to content

Commit

Permalink
Relax setup requirements.
Browse files Browse the repository at this point in the history
  • Loading branch information
jacquerie committed Oct 12, 2018
1 parent 20992dd commit f4438d6
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,21 +12,20 @@
readme = open('README.rst').read()

setup_requires = [
'autosemver~=0.0,>=0.5.3',
'autosemver>=0.5.3',
]

install_requires = [
'Flask~=0.0,>=0.12.2',
'bpython~=0.0,>=0.16',
'click~=6.0,>=6.7',
'Flask>=0.12.2',
'bpython>=0.16',
'click>=6.7',
]

docs_require = []

tests_require = [
'flake8-future-import~=0.0,>=0.4.3',
'pytest-flake8~=0.0,>=0.9.1',
'pytest~=3.0,>=3.2.3',
'flake8-future-import>=0.4.3',
'pytest-flake8>=0.9.1',
]

extras_require = {
Expand Down

0 comments on commit f4438d6

Please sign in to comment.