From 7c2926314b2b8f330a1e5108b31a33a9c736b4d8 Mon Sep 17 00:00:00 2001 From: KKlochko Date: Sat, 17 Jun 2023 19:03:35 +0300 Subject: [PATCH] Renamed to python_template --- pyproject.toml | 4 ++-- {poetry_template => python_template}/__init__.py | 0 {poetry_template => python_template}/main.py | 0 tests/test_main.py | 2 +- 4 files changed, 3 insertions(+), 3 deletions(-) rename {poetry_template => python_template}/__init__.py (100%) rename {poetry_template => python_template}/main.py (100%) diff --git a/pyproject.toml b/pyproject.toml index 9b8ed4c..3059fc5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,10 +1,10 @@ [tool.poetry] -name = "poetry-template" +name = "python-template" version = "0.1.0" description = "" authors = ["Your Name "] readme = "README.md" -packages = [{include = "poetry_template"}] +packages = [{include = "python_template"}] [tool.poetry.dependencies] python = "^3.10" diff --git a/poetry_template/__init__.py b/python_template/__init__.py similarity index 100% rename from poetry_template/__init__.py rename to python_template/__init__.py diff --git a/poetry_template/main.py b/python_template/main.py similarity index 100% rename from poetry_template/main.py rename to python_template/main.py diff --git a/tests/test_main.py b/tests/test_main.py index 59d6446..1bb149a 100644 --- a/tests/test_main.py +++ b/tests/test_main.py @@ -1,5 +1,5 @@ import pytest -from poetry_template.main import sum, mul +from python_template.main import sum, mul def test_sum(): a = 1