Skip to content

Commit

Permalink
Update requirements wrt #9
Browse files Browse the repository at this point in the history
  • Loading branch information
jfinkhaeuser committed Nov 8, 2017
1 parent 103f173 commit 9276758
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
-e .[dev,icu]
-e .[dev,ssv,icu]
2 changes: 1 addition & 1 deletion requirements_no_icu.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
-e .[dev]
-e .[dev,ssv]
13 changes: 9 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@
from distutils.core import setup, find_packages

dev_require = [
'tox>=2.8',
'tox>=2.9',
'bumpversion>=0.5',
'pytest>=3.2',
'pytest-cov>=2.5',
'flake8>=3.4',
'flake8>=3.5',
'pep8-naming>=0.4',
'flake8-quotes>=0.10',
'flake8-quotes>=0.12',
'flake8_docstrings>=1.1',
'sphinx>=1.6',
]
Expand All @@ -29,6 +29,10 @@
'PyICU~=1.9',
]

ssv_require = [
'swagger-spec-validator~=2.1',
]

# Run setup
setup(
name = 'prance',
Expand Down Expand Up @@ -62,7 +66,7 @@
install_requires = [
'chardet~=3.0',
'PyYAML~=3.12',
'swagger-spec-validator~=2.1',
'flex~=6.11',
'dpath~=1.4',
'requests~=2.18',
'six~=1.11',
Expand All @@ -71,6 +75,7 @@
extras_require = {
'dev': dev_require,
'icu': icu_require,
'ssv': ssv_require,
},
entry_points={
'console_scripts': [
Expand Down

0 comments on commit 9276758

Please sign in to comment.