Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
diegobit committed Aug 21, 2024
2 parents b315bdd + 9cf6d81 commit 6c02db5
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 44 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/publish-to-pypi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@master
- name: Set up Python 3.7
uses: actions/setup-python@v3
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
name: Set up Python
with:
python-version: "3.7"
python-version: "3.11"

- name: Install pypa/build
run: >-
Expand All @@ -41,4 +41,4 @@ jobs:
if: startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}
password: ${{ secrets.PYPI_API_TOKEN }}
1 change: 1 addition & 0 deletions pydlib/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from .src.dlib import has, get, update, delete
File renamed without changes.
22 changes: 18 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,20 @@
[build-system]
requires = [
"setuptools>=42",
"wheel"
]
requires = [ "setuptools>=42", "wheel" ]
build-backend = "setuptools.build_meta"

[project]
name = "pydlib"
authors = [
{ name = "Diego Giorgini, Luigi Di Sotto", email = "[email protected]" }
]
description = "The Dictionary Library."
version = "0.3.2"
requires-python = ">=3.7"
dependencies = [
"flatten-dict"
]
dynamic = ["readme"]

[tool.setuptools.dynamic]
readme = {file = ["README.md"], content-type = "text/markdown"}

29 changes: 0 additions & 29 deletions setup.py

This file was deleted.

6 changes: 0 additions & 6 deletions src/pydlib/__init__.py

This file was deleted.

0 comments on commit 6c02db5

Please sign in to comment.