Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Add source files opt #7

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
2 changes: 1 addition & 1 deletion anaconda_verify/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
'always_include_files'},
'requirements': {'build', 'run'},
'app': {'entry', 'icon', 'summary', 'type', 'cli_opts'},
'test': {'requires', 'commands', 'files', 'imports'},
'test': {'requires', 'commands', 'files', 'imports', 'source_files'},
'about': {'license', 'license_url', 'license_family', 'license_file',
'summary', 'description', 'home', 'doc_url', 'dev_url'},
}
Expand Down
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,12 @@
# All Rights Reserved
import re
from os.path import join
import sys

from distutils.core import setup
if 'develop' in sys.argv:
from setuptools import setup
else:
from distutils.core import setup


# read version from anaconda_verify/__init__.py
Expand Down