-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Include library
folder in Python packages
#184
base: main
Are you sure you want to change the base?
Conversation
…age through MANIFEST and allow their installation with setuptools
…ly to the Docker image
Hey and thank you soo much for opening this PR. I think we could leave the |
@@ -1,3 +1,4 @@ | |||
include README.md LICENSE requirements.txt main.py | |||
recursive-include src/library *.yml |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Change to library *.yml
CMD ["make", "test-run"] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove extra line added
@@ -45,4 +45,5 @@ | |||
install_requires=REQUIRMENTS, | |||
packages=find_packages(exclude=("tests", "tests.*")), | |||
entry_points={"console_scripts": ["raven = src.cmdline:execute"]}, | |||
include_package_data=True, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this required?
I tried to build the package without this, and it worked. Is there something I am missing?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good idea!
Please take a look at the comments.
This is a proposed fix for #183