diff options
author | Aaron LI <aaronly.me@outlook.com> | 2016-10-15 01:08:02 +0800 |
---|---|---|
committer | Aaron LI <aaronly.me@outlook.com> | 2016-10-15 01:08:02 +0800 |
commit | 87ba0672e30dec25144d372e694900ba4a466e28 (patch) | |
tree | a368b60c89bf020465176388fc997831bc72aa82 /setup.py | |
parent | 84187a51439adf36b78f12509b41471ba6ba8895 (diff) | |
download | fg21sim-87ba0672e30dec25144d372e694900ba4a466e28.tar.bz2 |
Install non-code files: config specifications
The default config specifications are required and should be installed.
TODO:
* Figure out the problem why "LICENSE" cannot be installed as well ??
References:
* http://setuptools.readthedocs.io/en/latest/setuptools.html#including-data-files
* http://python-packaging.readthedocs.io/en/latest/non-code-files.html
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -69,6 +69,7 @@ setup( "Topic :: Scientific/Engineering :: Astronomy", ], packages=find_packages(exclude=["docs", "tests"]), + include_package_data=True, scripts=[ "bin/fg21sim", "bin/healpix2hpx", |