Skip to content

Commit

Permalink
build: use lowercase project name in pyproject.toml
Browse files Browse the repository at this point in the history
Use lowercase project name in `pyproject.toml` so that the package gets
installed with the correct package name, `sqlalchemy_searchable`,
instead of `SQLAlchemy_Searchable`.
  • Loading branch information
jpvanhal committed Aug 26, 2023
1 parent 7de41ae commit 22bb304
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ requires = ["hatchling"]
build-backend = "hatchling.build"

[project]
name = "SQLAlchemy-Searchable"
name = "sqlalchemy-searchable"
dynamic = ["version"]
description = "Provides fulltext search capabilities for declarative SQLAlchemy models."
readme = "README.rst"
Expand Down

0 comments on commit 22bb304

Please sign in to comment.