forked from chipsalliance/fasm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MANIFEST.in
49 lines (41 loc) · 851 Bytes
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
# Include the README
include *.md
# Include the license file
include LICENSE
include AUTHORS
# Development support files
include Makefile
include requirements.txt
include environment.yml
include *.yapf
include *.yml
include pyproject.toml
include .clang-format
# Examples
graft examples
# Tests
graft tests
# Docs
recursive-include docs *.py
recursive-include docs *.rst
recursive-include docs *.txt
recursive-include docs *.yml
recursive-include docs *.png
recursive-include docs Makefile
recursive-include tests *
prune docs/_*
prune docs/env
# textx based parser
recursive-include fasm/parser *.tx
recursive-include fasm/parser *.pyx
exclude fasm/parser/*.c
# antlr based parser
include src/*
include src/antlr/*
# Excludes
global-exclude .git
exclude .gitmodules
exclude update_version.py
prune third_party
prune .github
prune __pycache__