-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Update .gitignore to exclude static, media, and compiled Python…
… files; modify requirements and render configuration for deployment
- Loading branch information
1 parent
08c48a0
commit 2f97a8a
Showing
5 changed files
with
92 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,7 @@ name = "egypt-metro-backend" | |
version = "0.1.0" | ||
description = "Backend for Egypt Metro project" | ||
authors = ["Ahmed Nassar <[email protected]>"] | ||
package-mode = false # Disable packaging mode | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.9" | ||
|
@@ -15,8 +16,7 @@ uvicorn = "^0.15.0" | |
pydantic = "^1.8.2" | ||
httpx = "^0.21.1" | ||
starlette = "^0.14.2" | ||
asyncpg = "^0.24.0" | ||
|
||
asyncpg = "^0.30.0" | ||
pywin32 = { version = "306", optional = true, markers = "sys_platform == 'win32'" } | ||
|
||
[tool.poetry.dev-dependencies] | ||
|
@@ -28,3 +28,8 @@ pytest-mock = "^3.6.1" | |
[build-system] | ||
requires = ["poetry-core>=1.0.0"] | ||
build-backend = "poetry.core.masonry.api" | ||
|
||
# Add this section to specify the package directory | ||
packages = [ | ||
{ include = "egypt_metro" }, # Main package | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters