-
Notifications
You must be signed in to change notification settings - Fork 383
Modernize project to use pyproject.toml, review .gitignore and untrack any ignored files, update README
#660
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
Merged
Ickerday
merged 25 commits into
develop
from
dev/BJ/SDK-36-Modernize-project-to-use-pyproject.toml
Sep 2, 2025
Merged
Changes from 16 commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
369a13f
Add empty pyproject.toml
Ickerday 7dbe563
Add initial pyproject.toml contents
Ickerday f3a9ab7
Add twine for uploading to splunkdev artifactory
Ickerday 1cb829f
Add a proper fleshed-out .gitignore file
Ickerday 49a3dd0
Return to proper project name
Ickerday 8461d2c
Add .vscode to .gitignore
Ickerday aa0c4c5
Try fix CI 🤦
Ickerday c2a35b7
Remove twine and pytest from deps
Ickerday 0e7ca17
Remove tox.ini
Ickerday 68cb398
Try fix CI 🤦 #2
Ickerday 23f10ac
Simplify .gitignore a bit
Ickerday 240038a
Remove XLSX file
Ickerday 808520d
Remove test report generation, clean up tox config, remove setuptools…
Ickerday 9926f4a
Update release workflow to use pyproject.toml
Ickerday 4a2b8d6
Format MD files
Ickerday 73f4916
Add CD workflow for Test PyPI
Ickerday 88eda89
Revert some lines because I'm stupid
Ickerday 4566648
Remove .gitattributes as we don't store any binary files that use Git…
Ickerday edfe456
Remove
Ickerday f2b63ab
Update links
Ickerday c50c93a
Clean up Makefile
Ickerday d981f97
Remove .pylintrc
Ickerday bfaaef1
Remove scripts/
Ickerday b74af4f
Remove tests/README.md
Ickerday 11d82b7
Update README
Ickerday File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,10 +1,7 @@ | ||
| --- | ||
| name: Custom issue template | ||
| about: Describe this issue template's purpose here. | ||
| title: '' | ||
| labels: '' | ||
| assignees: '' | ||
|
|
||
| title: "" | ||
| labels: "" | ||
| assignees: "" | ||
| --- | ||
|
|
||
|
|
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,28 @@ | ||
| name: CD | ||
| on: [workflow_dispatch] | ||
|
|
||
| jobs: | ||
| test-pypi-deploy: | ||
| name: Deploy to Test PyPI | ||
| runs-on: ubuntu-latest | ||
| permissions: | ||
| id-token: write | ||
| environment: | ||
| name: splunk-test-pypi | ||
| steps: | ||
| - name: Checkout source | ||
| uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 | ||
| - name: Set up Python | ||
| uses: actions/setup-python@3d1e2d2ca0a067f27da6fec484fce7f5256def85 | ||
| with: | ||
| python-version: 3.9 | ||
| - name: Install dependencies | ||
| run: pip install build | ||
| - name: Build package | ||
| run: python -m build | ||
| - name: Publish package to Test PyPI | ||
| uses: pypa/gh-action-pypi-publish@d417ba7e7683fa9104c42abe611c1f2c93c0727d | ||
| with: | ||
| user: __token__ | ||
| password: ${{ secrets.TEST_PYPI_PASSWORD }} | ||
| repository-url: https://test.pypi.org/legacy/ |
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -32,4 +32,4 @@ jobs: | |
| - name: Install tox | ||
| run: pip install tox | ||
| - name: Test Execution | ||
| run: tox -e py | ||
| run: tox -e py -- ./tests | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.