Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 45
Include library folder in Python packages#184
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
base:main
Are you sure you want to change the base?
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
71466572f930bb25955d956512eb42b7a5eFile filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,4 @@ | ||
| include README.md LICENSE requirements.txt main.py | ||
| include README.md LICENSE requirements.txt | ||
| recursive-include src/raven_cycode/library *.yml | ||
| recursive-include tests *.py | ||
| recursive-include src * | ||
| recursive-include src/raven_cycode * |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -43,6 +43,8 @@ | ||
| "Topic :: Security", | ||
| ], | ||
| install_requires=REQUIRMENTS, | ||
| packages=find_packages(exclude=("tests", "tests.*")), | ||
| entry_points={"console_scripts": ["raven = src.cmdline:execute"]}, | ||
| packages=find_packages(where="src", exclude=("tests", "tests.*")), | ||
| package_dir={"": "src"}, | ||
| entry_points={"console_scripts": ["raven = raven_cycode.cmdline:execute"]}, | ||
| include_package_data=True, | ||
Contributor There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is this required? Author There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Just a safeguard, it looks like it's at | ||
| ) | ||
This file was deleted.
Uh oh!
There was an error while loading. Please reload this page.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| from raven_cycode.common.ignore_warnings import ignore_warnings | ||
| ignore_warnings() |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| from src.config.config import Config | ||
| from raven_cycode.config.config import Config | ||
| def clean_graph(): | ||
Uh oh!
There was an error while loading. Please reload this page.
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