-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMANIFEST.in
More file actions
43 lines (35 loc) · 1.49 KB
/
Copy pathMANIFEST.in
File metadata and controls
43 lines (35 loc) · 1.49 KB
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
## Optional file to specify additional files for packaging.
## Can be Access import importlib.resources as pkg_resources
## Include all Python files (these are included by default, but it's good practice to be explicit)
## Include all files in the package source code
recursive-include lightnumpy *
## Include specific files with particular extensions in a subdirectory
#recursive-include assets *.png *.jpg *.svg
## Include all non-Python files in your package directory (e.g., data files, config files)
## Replace `your_package_name` with the actual name of your package
# recursive-include lightnumpy *.txt *.csv *.json *.yaml
## Exclude unnecessary files or directories (useful for keeping the package clean)
# prune tests # Exclude the tests directory from the distribution
# prune examples # Exclude the examples directory
# Include files in a specific subdirectory (e.g., docs for documentation)
# recursive-include docs *
include environment.yml
include requirements.txt
recursive-include requirements *
## Include specific data files, like your CITATION.bib
include CITATION.bib
include CITATION.cff
## Include the README and LICENSE files (important for documentation and legal information)
include CODE_OF_CONDUCT.md
include CONTRIBUTING.md
include LICENSE.txt
include LICENSE
recursive-include LICENSES *
# Optionally, include other specific folders or files
include .pre-commit-config.yaml
include pyproject.toml
include pytest.ini
include README.md
include SECURITY.md
include setup.cfg
include tox.ini