-
Notifications
You must be signed in to change notification settings - Fork 0
/
MANIFEST.in
33 lines (29 loc) · 1.08 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
# The following files are included in a source distribution by default:
# - all Python source files implied by the py_modules and packages setup() arguments
# - all C source files mentioned in the ext_modules or libraries setup() arguments
# - scripts specified by the scripts setup() argument
# - all files specified by the package_data and data_files setup() arguments
# - the file specified by the license_file option in setup.cfg (setuptools 40.8.0+)
# - all files specified by the license_files option in setup.cfg (setuptools 42.0.0+)
# - all files matching the pattern test/test*.py
# - setup.py (or whatever you called your setup script)
# - setup.cfg
# - README
# - README.txt
# - README.rst (Python 3.7+ or setuptools 0.6.27+)
# - README.md (setuptools 36.4.0+)
# - pyproject.toml (setuptools 43.0.0+)
# - MANIFEST.in
# Disable all default files :)
global-exclude *
include LICENSE
include Makefile
include pyproject.toml
include README.md
include requirements.txt
include setup.cfg
graft rabbit_tunnel
global-exclude *.c
global-exclude *.so
global-exclude *.py[cod]
global-exclude htmlcov/*