Skip to content

Commit

Permalink
Revise Pipfile and setup.py per
Browse files Browse the repository at this point in the history
  • Loading branch information
stevepiercy committed Aug 5, 2019
1 parent 5ae9efc commit 9292ddb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 13 deletions.
13 changes: 2 additions & 11 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,12 @@ verify_ssl = true
name = "pypi"

[packages]
"pyramid-openapi3" = {editable = true, path = "."}
pyramid-openapi3 = {editable = true, path = "."}

[dev-packages]
black = "==19.3b0"
codespell = "*"
docutils = "==0.15"
dataclasses = {version="*", markers="python_version < '3.7'"}
flake8 = "*"
flake8-assertive = "*"
flake8-blind-except = "*"
Expand All @@ -29,20 +28,12 @@ flake8-print = "*"
flake8-self = "*"
flake8-super-call = "*"
flake8-tuple = "*"
importlib-resources = {version="*", markers="python_version < '3.7'"}
lxml = "*"
mypy = "*"
pre-commit = "*"
pre-commit-hooks = "*"
pydocstyle = "<4.0.0"
pytest = "*"
pytest-cov = "*"
pyramid-openapi3 = {editable = true, path = ".", extras = ["testing"]}
pytest-randomly = "*"
twine = "*"
webtest = "*"

[testing]
pytest = "*"
coverage = "*"
pytest-cov = "*"
pytest-xdist = "*"
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ def run(self): # noqa: D102

testing_extras = [
"pytest >= 3.1.0", # >= 3.1.0 so we can use pytest.param
"coverage",
"pytest-cov",
"pytest-xdist",
]
Expand Down Expand Up @@ -74,6 +73,6 @@ def run(self): # noqa: D102
packages=find_packages(exclude=["tests"]),
package_data={"pyramid_openapi3": ["static/*.*"], "": ["LICENSE"]},
install_requires=["openapi-core", "openapi-spec-validator", "pyramid"],
extras_require={"testing": testing_extras, ':python_version<"3.7"': ["importlib-resources"]},
extras_require={"testing": testing_extras},
cmdclass={"verify": VerifyVersionCommand},
)

0 comments on commit 9292ddb

Please sign in to comment.