Skip to content
This repository has been archived by the owner on Jul 24, 2020. It is now read-only.

Update packaging #153

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
include *.rst LICENSE
include galaxy/util/docutils_template.txt
include galaxy/tools/xsd/README.md
# package data
include galaxy/exceptions/error_codes.json
include galaxy/tools/deps/mulled/invfile.lua
include galaxy/tools/deps/resolvers/default_conda_mapping.yml
include galaxy/tools/toolbox/filters/examples.py.sample
include galaxy/tools/xsd/LICENSE
include galaxy/tools/xsd/galaxy.jxb
include galaxy/tools/xsd/galaxy.xsd
include galaxy/util/docutils_template.txt
# docs and tests
include *requirements*.txt
include tox.ini
recursive-include docs *.rst
recursive-include galaxy *.md
recursive-include tests *.py
3 changes: 3 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ def get_var(var_name):
'galaxy.util', # Incomplete
'galaxy.util.logging',
'galaxy.util.path',
'galaxy.web',
]
ENTRY_POINTS = '''
[console_scripts]
Expand All @@ -73,6 +74,8 @@ def get_var(var_name):
'exceptions/error_codes.json',
'tools/deps/mulled/invfile.lua',
'tools/deps/resolvers/default_conda_mapping.yml',
'tools/toolbox/filters/examples.py.sample',
'tools/xsd/galaxy.jxb',
],
}
PACKAGE_DIR = {
Expand Down