Skip to content

Commit

Permalink
Move "packaging" requirement to setup.py as it's not dev dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
mkoura committed Nov 15, 2018
1 parent bce53a2 commit ec236a1
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion requirements.txt
@@ -1,7 +1,6 @@
-e .

mock
packaging
pre-commit
pytest
pytest-cov
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Expand Up @@ -2,7 +2,6 @@

from setuptools import find_packages, setup


with open("README.rst", "rb") as fp:
LONG_DESCRIPTION = fp.read().decode("utf-8").strip()

Expand All @@ -24,7 +23,7 @@
]
},
setup_requires=["setuptools_scm"],
install_requires=["lxml", "pyyaml", "requests", "six", "docutils"],
install_requires=["lxml", "pyyaml", "requests", "six", "docutils", "packaging"],
keywords=["polarion", "testing"],
classifiers=[
"Development Status :: 3 - Alpha",
Expand Down

0 comments on commit ec236a1

Please sign in to comment.