Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ author-email = [email protected]
description = SQLAlchemy Extension for PyApp
long-description = file: README.rst
long-description-content-type = text/x-rst
url = https://github.com/pyapp-org/pyapp.sqlalchemy
url = https://github.com/pyapp-org/pyapp.sqlalchemy==1.3.11
platforms = any
license = BSD-3-Clause
licence_files =
Expand All @@ -28,14 +28,14 @@ classifiers =

[options]
python_requires = >=3.6
packages = pyapp_ext.sqlalchemy
packages = pyapp_ext.sqlalchemy==1.3.11
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is bad!

test_suite = tests
setup_requires =
pytest-runner
pytest-runner==5.2
setuptools >=38.3
install_requires =
pyapp >=4.0
sqlalchemy
sqlalchemy==1.3.11
tests_require =
mock
pytest
Expand All @@ -47,8 +47,8 @@ pyapp.extensions =

[options.extras_require]
dev =
docutils
black
docutils==0.15.2
black==19.10b0

[aliases]
test = pytest
Expand All @@ -58,7 +58,7 @@ universal = False

[tool:pytest]
addopts =
--cov=pyapp_ext.sqlalchemy
--cov=pyapp_ext.sqlalchemy==1.3.11
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is in the wrong location


[check]
metadata = true
Expand Down