This repository has been archived by the owner on May 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
MANIFEST.in
36 lines (30 loc) · 1.45 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
35
36
# Copyright (C) 2021 Serghei Iakovlev <[email protected]>
#
# This file is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 3
# of the License, or (at your option) any later version.
#
# This file is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this file. If not, see <https://www.gnu.org/licenses/>.
# 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 AUTHORS.rst README.rst SECURITY.rst CHANGELOG.rst CONTRIBUTING.rst LICENSE
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
# All files in the sdist with a .pyc, .pyo, or .pyd extension will be removed
# from the sdist.
global-exclude *.py[cod]
# Exclude stuff for local development
exclude .coveragerc .pylintrc Makefile default.mk requirements/*.in
# Include requirements.txt for reproducible tests
include requirements/*.txt