Merge pull request #405 from ThomasWaldmann/src-layout

src/ based project layout
This commit is contained in:
TW 2019-04-08 21:12:59 +02:00 committed by GitHub
commit 9cfd9b8438
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
131 changed files with 7 additions and 6 deletions

View File

@ -2,12 +2,12 @@
[run]
branch = True
source = nsupdate
source = src/nsupdate
omit =
*/migrations/*
*/_tests/*
nsupdate/wsgi.py
nsupdate/settings/*
src/*/migrations/*
src/*/_tests/*
src/nsupdate/wsgi.py
src/nsupdate/settings/*
[report]
# Regexes for lines to exclude from consideration

View File

@ -18,7 +18,8 @@ setup(
description='A dynamic DNS update service',
long_description=readme_content,
keywords="dyndns ddns dynamic dns django",
packages=find_packages(exclude=['_tests', ]),
packages=find_packages('src', exclude=['_tests', ]),
package_dir={'': 'src'},
package_data={
'nsupdate': [
'templates/*.html',

Some files were not shown because too many files have changed in this diff Show More