Skip to content
This repository was archived by the owner on Feb 9, 2026. It is now read-only.

Commit fc7dba6

Browse files
committed
add Poetry
1 parent 69825fa commit fc7dba6

File tree

4 files changed

+20
-0
lines changed

4 files changed

+20
-0
lines changed

backend/poetry.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[virtualenvs]
2+
in-project = true

backend/pyproject.toml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
[project]
2+
name = "project-experiment"
3+
version = "1.0.0"
4+
description = ""
5+
authors = [
6+
{name = "u-hossy",email = "95125392+u-hossy@users.noreply.github.com"}
7+
]
8+
readme = "README.md"
9+
requires-python = ">=3.12"
10+
dependencies = [
11+
]
12+
13+
[tool.poetry]
14+
packages = [{include = "project_experiment", from = "src"}]
15+
16+
[build-system]
17+
requires = ["poetry-core>=2.0.0,<3.0.0"]
18+
build-backend = "poetry.core.masonry.api"

backend/src/project_experiment/__init__.py

Whitespace-only changes.

backend/tests/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)