forked from Pymmdrza/fastCrypter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMANIFEST.in
More file actions
38 lines (30 loc) · 862 Bytes
/
MANIFEST.in
File metadata and controls
38 lines (30 loc) · 862 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
# Include documentation files
include README.md
include LICENSE
include TASK.md
# Include requirements
include requirements.txt
# Include native library source files
recursive-include fastCrypter/native *.c *.cpp *.h *.hpp
include fastCrypter/native/Makefile
# Include compiled native libraries (if they exist)
recursive-include fastCrypter/native/libs *.so *.dll *.dylib
# Include examples
recursive-include examples *.py *.md
# Include tests
recursive-include tests *.py
# Include documentation
recursive-include docs *.md *.rst *.txt
# Include GitHub workflows
recursive-include .github *.yml *.yaml
# Exclude unnecessary files
global-exclude *.pyc
global-exclude *.pyo
global-exclude *.pyd
global-exclude __pycache__
global-exclude .git*
global-exclude .DS_Store
global-exclude *.tmp
global-exclude *.temp
global-exclude .vscode
global-exclude .idea