turn config into package

this prepares the splitting
This commit is contained in:
Ronny Pfannschmidt 2018-06-05 09:06:43 +02:00
parent 075faa5e2b
commit bc2247219f
2 changed files with 7 additions and 1 deletions

View File

@ -109,7 +109,13 @@ def main():
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*",
install_requires=install_requires,
extras_require=extras_require,
packages=["_pytest", "_pytest.assertion", "_pytest._code", "_pytest.mark"],
packages=[
"_pytest",
"_pytest.assertion",
"_pytest._code",
"_pytest.mark",
"_pytest.config",
],
py_modules=["pytest"],
zip_safe=False,
)