diff --git a/MANIFEST.in b/MANIFEST.in index 3df67dcf..ddebd0b0 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -6,7 +6,6 @@ include README.md include CONTRIBUTING.md include .readthedocs.yaml -include dev_requirements.txt include Makefile include tox.ini @@ -14,7 +13,7 @@ include tox.ini include gql/py.typed recursive-include tests *.py *.graphql *.cnf *.yaml *.pem -recursive-include docs *.txt *.rst conf.py Makefile make.bat *.jpg *.png *.gif +recursive-include docs *.txt *.rst conf.py Makefile make.bat recursive-include docs/code_examples *.py prune docs/_build diff --git a/setup.cfg b/setup.cfg index 50388a19..66380493 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,3 @@ -[wheel] -universal = 1 - [flake8] max-line-length = 88 diff --git a/setup.py b/setup.py index a5efffa3..054bc93e 100644 --- a/setup.py +++ b/setup.py @@ -99,7 +99,6 @@ # PEP-561: https://www.python.org/dev/peps/pep-0561/ package_data={"gql": ["py.typed"]}, install_requires=install_requires, - tests_require=install_all_requires + tests_requires, extras_require={ "all": install_all_requires, "test": install_all_requires + tests_requires,