Add check-manifest.

This commit is contained in:
Jannis Leidel 2019-12-03 12:47:25 +01:00
parent b9f6aa98ec
commit bd61710591
No known key found for this signature in database
GPG key ID: C795956FB489DCA9
3 changed files with 6 additions and 1 deletions

View file

@ -1,7 +1,9 @@
include README.rst
include CONTRIBUTING.md
include AUTHORS
include .travis.yml
include tasks.py
include tox.ini
recursive-include tests *
recursive-include docs *
recursive-include test_project *
include LICENSE

View file

@ -33,6 +33,7 @@ setup(
license='BSD',
description="A helper for organizing Django settings.",
long_description=read('README.rst'),
long_description_content_type='text/x-rst',
author='Jannis Leidel',
author_email='jannis@leidel.info',
packages=['configurations'],

View file

@ -47,8 +47,10 @@ commands =
[testenv:py36-checkqa]
commands =
flake8 {toxinidir}
check-manifest -v
python setup.py sdist
twine check dist/*
deps =
flake8
twine
check-manifest