diff options
author | Gábor Bernát <gaborjbernat@gmail.com> | 2018-06-11 10:10:42 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-11 10:10:42 +0100 |
commit | 4e7d9091f1f7ffd8042936fe25cd2f66e196f57c (patch) | |
tree | 88d4d446b6fa164e281cce3740ec315b2aa2d8d2 /setup.py | |
parent | f5707949159ffee516bf2e01a11d438f7ad49434 (diff) | |
download | tox-git-4e7d9091f1f7ffd8042936fe25cd2f66e196f57c.tar.gz |
[#826] switch to source layout (#827)
* move to src layout
* fix coverage
* PR feedback
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -43,7 +43,8 @@ def main(): platforms=["unix", "linux", "osx", "cygwin", "win32"], author="holger krekel", author_email="holger@merlinux.eu", - packages=["tox"], + packages=setuptools.find_packages("src"), + package_dir={"": "src"}, entry_points={ "console_scripts": ["tox=tox:cmdline", "tox-quickstart=tox._quickstart:main"] }, @@ -59,7 +60,6 @@ def main(): "pytest-xdist", ], "docs": ["sphinx >= 1.6.3, < 2", "towncrier >= 17.8.0"], - "lint": ["pre-commit == 1.8.2"], "publish": ["devpi", "twine"], }, classifiers=[ |