Skip to content

Commit

Permalink
release: add first release
Browse files Browse the repository at this point in the history
  • Loading branch information
jlsneto committed Jul 24, 2024
1 parent c9e8651 commit f68f9a2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pythonpublish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ jobs:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install -r requirements.txt
python -m pip install --upgrade build
python -m pip install --upgrade twine
python -m pip install -r requirements.txt
- name: Build and publish
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
Expand Down
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["setuptools>=61.0"]
requires = ["setuptools>=61.0", "cereja"]
build-backend = "setuptools.build_meta"

[tool.setuptools]
Expand All @@ -11,7 +11,7 @@ exclude = ["docs*", "tests*", "lab*"]

[project]
name = "pitanga"
dynamic = ["version"]
dynamic = ["version", "dependencies"]
authors = [
{ name="Joab Leite", email="leitejoab@gmail.com" },
]
Expand All @@ -35,6 +35,7 @@ classifiers = [

[tool.setuptools.dynamic]
version = {attr = "pitanga.__version__"}
dependencies = {file = ["requirements.txt"]}

[project.urls]
"Homepage" = "https://github.com/cereja-project/pitanga"
Expand Down

0 comments on commit f68f9a2

Please sign in to comment.