-
Notifications
You must be signed in to change notification settings - Fork 52
/
MANIFEST.in
42 lines (37 loc) · 1.01 KB
/
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
# General info
include LICENSE
include *.rst
include ROADMAP.md
include CODE_OF_CONDUCT.md
include CONTRIBUTING.md
include CITATION.bib
exclude RESEARCH.md
# Control and setup helpers
include src/orion/core/_version.py
include versioneer.py
# Exclude development helpers
exclude tox.ini
exclude *-requirements.txt
exclude .pylintrc
exclude codecov.yml
exclude .mailmap
exclude .readthedocs.yml
prune conda/
prune .github/
# Include src, tests, docs
recursive-include docs *.rst *.py *.gitkeep *.png *.html *.txt *.gif *.ai
recursive-include examples *.rst
prune docs/build
prune docs/src/reference
recursive-include src *.py
recursive-include tests *.py *.yaml *.json *.txt *.yml *.in LICENSE
recursive-include dashboard/build *
include tests/requirements.txt
include .pre-commit-config.yaml
include CITATION.bib
include docs/src/_static/logos/orion_logo.ai
include src/orion/py.typed
# Include examples
recursive-include examples *.md *.py *.pkl *.yaml *.ipynb */requirements.txt
# Exclude dashboard source code
prune dashboard/src