summaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
authorMichael Merickel <michael@merickel.org>2022-05-15 20:24:52 -0500
committerMichael Merickel <michael@merickel.org>2022-05-15 20:41:32 -0500
commit617bc4c2eba62701de64196e1199c93cc7277ce4 (patch)
tree435aa3d6456da966a81cac6febeace7021c3ec89 /setup.cfg
parentee1d364dabd544fe4bf355b2c6578e4237b03992 (diff)
downloadpastedeploy-git-617bc4c2eba62701de64196e1199c93cc7277ce4.tar.gz
refactor to a src folder
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg13
1 files changed, 11 insertions, 2 deletions
diff --git a/setup.cfg b/setup.cfg
index 1544721..4d81c86 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -39,6 +39,8 @@ project_urls =
Issue Tracker = https://github.com/Pylons/pastedeploy/issues
[options]
+package_dir =
+ =src
packages = find:
zip_safe = False
install_requires =
@@ -48,8 +50,7 @@ namespace_packages =
paste
[options.packages.find]
-exclude =
- tests
+where = src
[options.extras_require]
config =
@@ -58,6 +59,10 @@ paste =
docs =
Sphinx >= 1.7.5
pylons-sphinx-themes
+testing =
+ Paste
+ pytest
+ pytest-cov
[options.entry_points]
paste.filter_app_factory =
@@ -66,3 +71,7 @@ paste.filter_app_factory =
paste.paster_create_template =
paste_deploy = paste.deploy.paster_templates:PasteDeploy
+
+[check-manifest]
+ignore-bad-ideas =
+ tests/fake_packages/**