Last active
May 20, 2020 20:25
-
-
Save vishal-kvn/5c9b4a09da5da71e55dcf6b9cce33adb to your computer and use it in GitHub Desktop.
package_data is very helpful. The default behavior is to include only .py under site-packages
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python | |
| from setuptools import setup, find_packages | |
| # https://svn.python.org/projects/sandbox/trunk/setuptools/setuptools.txt | |
| # ls /Users/vkajjam/miniconda3/envs/feature_engineering/lib/python3.7/site-packages/ | |
| setup( | |
| name="color profiler", | |
| version="0.0.1", | |
| description="color profiler app.", | |
| packages=find_packages(), | |
| # include_package_data=True, | |
| package_data = { | |
| '': ['*.yaml'], | |
| }, | |
| url="https://github.com/vishal-kvn/color_profiler.git", | |
| install_requires=['opencv-python', | |
| 'numpy', | |
| 'matplotlib', | |
| 'scipy', | |
| 'SolrClient', | |
| 'Flask', | |
| 'pyyaml', | |
| 'fnv', | |
| 'boto3', | |
| ], | |
| ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment