adjust to src/ based project layout
This commit is contained in:
parent
6f5ab5b4c8
commit
c0f763515a
10
.coveragerc
10
.coveragerc
@ -2,12 +2,12 @@
|
|||||||
|
|
||||||
[run]
|
[run]
|
||||||
branch = True
|
branch = True
|
||||||
source = nsupdate
|
source = src/nsupdate
|
||||||
omit =
|
omit =
|
||||||
*/migrations/*
|
src/*/migrations/*
|
||||||
*/_tests/*
|
src/*/_tests/*
|
||||||
nsupdate/wsgi.py
|
src/nsupdate/wsgi.py
|
||||||
nsupdate/settings/*
|
src/nsupdate/settings/*
|
||||||
|
|
||||||
[report]
|
[report]
|
||||||
# Regexes for lines to exclude from consideration
|
# Regexes for lines to exclude from consideration
|
||||||
|
3
setup.py
3
setup.py
@ -18,7 +18,8 @@ setup(
|
|||||||
description='A dynamic DNS update service',
|
description='A dynamic DNS update service',
|
||||||
long_description=readme_content,
|
long_description=readme_content,
|
||||||
keywords="dyndns ddns dynamic dns django",
|
keywords="dyndns ddns dynamic dns django",
|
||||||
packages=find_packages(exclude=['_tests', ]),
|
packages=find_packages('src', exclude=['_tests', ]),
|
||||||
|
package_dir={'': 'src'},
|
||||||
package_data={
|
package_data={
|
||||||
'nsupdate': [
|
'nsupdate': [
|
||||||
'templates/*.html',
|
'templates/*.html',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user