Skip to content
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

PyPi Setup #37

Merged
merged 8 commits into from
Dec 20, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Updated app-release action
moleculekayak committed Dec 19, 2024
commit a28772c93f73aa2dcb79a6edff99b4f89cffa371
2 changes: 1 addition & 1 deletion .github/workflows/app-release.yml
Original file line number Diff line number Diff line change
@@ -12,7 +12,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Build Artifacts
run: zip -r fertilizer.zip src main.py requirements.txt
run: zip -r fertilizer.zip src pyproject.toml
- name: Release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -8,12 +8,12 @@ dependencies = [
"bencoder",
"colorama",
"requests",
"flask",
"pytest",
"requests-mock",
"ruff",
"flask"
]

[project.optional-dependencies]
dev = ["pytest", "ruff", "requests-mock"]

[project.scripts]
fertilizer = "fertilizer.main:main"