-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathMANIFEST.in
More file actions
46 lines (38 loc) · 754 Bytes
/
MANIFEST.in
File metadata and controls
46 lines (38 loc) · 754 Bytes
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
37
38
39
40
41
42
43
44
45
46
include LICENSE.txt
include README.md
include setup.py
include pyproject.toml
include pytest.ini
include .coverage.rc
include tsconfig.json
include package.json
include webpack.config.js
include lexcube/labextension/*.tgz
# Documentation
graft docs
exclude docs/\#*
prune docs/build
prune docs/gh-pages
prune docs/dist
prune readme-media/
prune lexcube/lexcube_server/client
prune **/.venv**
# Examples
graft examples
# Tests
graft tests
prune tests/build
# Javascript files
graft lexcube/nbextension
graft src
graft css
prune **/node_modules
prune coverage
prune lib
# Patterns to exclude from any directory
global-exclude *~
global-exclude *.pyc
global-exclude *.pyo
global-exclude .git
global-exclude .ipynb_checkpoints
global-exclude .vscode