-
-
Notifications
You must be signed in to change notification settings - Fork 316
/
MANIFEST.in
34 lines (29 loc) · 1.11 KB
/
MANIFEST.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# This file is part of the django-environ.
#
# Copyright (c) 2021, Serghei Iakovlev <egrep@protonmail.ch>
# Copyright (c) 2013-2021, Daniele Faraglia <daniele.faraglia@gmail.com>
#
# For the full copyright and license information, please view
# the LICENSE.txt file that was distributed with this source code.
# This file consists of commands, one per line, instructing setuptools to add
# or remove some set of files from the sdist.
# Include all files matching any of the listed patterns.
include *.rst LICENSE.txt *.yml
graft .github
# The contents of the directory tree tests will first be added to the sdist.
# Many OS distributions prefers provide an ability run the tests
# during the package installation.
recursive-include tests *.py
recursive-include tests *.txt
include tox.ini
# All files in the sdist with a .pyc, .pyo, or .pyd extension will be removed
# from the sdist.
global-exclude *.py[cod]
# Documentation
include docs/docutils.conf docs/Makefile
recursive-include docs *.png
recursive-include docs *.svg
recursive-include docs *.py
recursive-include docs *.rst
recursive-include docs *.gitkeep
prune docs/_build