forked from seanfisk/python-project-template
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMANIFEST.in
More file actions
Latest commit
20 lines (17 loc) · 498 Bytes
/
Copy pathMANIFEST.in
File metadata and controls
20 lines (17 loc) · 498 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Informational files
include README.rst
include LICENSE
# Include docs and tests. It's unclear whether convention dictates
# including built docs. However, Sphinx doesn't include built docs, so
# we are following their lead.
graft docs
prune docs/build
graft tests
# Exclude any compile Python files (most likely grafted by tests/ directory).
global-exclude *.pyc
# Setup-related things
include pavement.py
include requirements-dev.txt
include requirements.txt
include setup.py
include tox.ini