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