Skip to content

Commit 18334f8

Browse files
authored
fix: include source directory name (#116)
Poetry by default looks for a directory with the same name as the project as the source directory. However as our project is named postgrest-py, but we migrated to the postgrest namespace, we need to explicitly tell poetry where to look for the source code.
1 parent 6493154 commit 18334f8

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

pyproject.toml

+6-3
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,19 @@ name = "postgrest-py"
33
version = "0.10.1"
44
description = "PostgREST client for Python. This library provides an ORM interface to PostgREST."
55
authors = ["Lương Quang Mạnh <[email protected]>"]
6-
homepage = "https://github.com/supabase/postgrest-py"
7-
repository = "https://github.com/supabase/postgrest-py"
8-
documentation = "https://github.com/supabase/postgrest-py"
6+
homepage = "https://github.com/supabase-community/postgrest-py"
7+
repository = "https://github.com/supabase-community/postgrest-py"
8+
documentation = "https://postgrest-py.rtfd.io"
99
readme = "README.md"
1010
license = "MIT"
1111
classifiers = [
1212
"Programming Language :: Python :: 3",
1313
"License :: OSI Approved :: MIT License",
1414
"Operating System :: OS Independent"
1515
]
16+
packages = [
17+
{ include = "postgrest" },
18+
]
1619

1720
[tool.poetry.dependencies]
1821
python = "^3.7"

0 commit comments

Comments
 (0)