diff --git a/.gitignore b/.gitignore
index ac8dd20945c399bdedbe896eb69a25ab3c56c604..f886c6fad8b597bf0ab92157118d00bd31076922 100644
--- a/.gitignore
+++ b/.gitignore
@@ -7,7 +7,7 @@ coverage.xml
 htmlcov/*
 
 # Setuptools SCM
-map/_version.py
+my_awesome_app/_version.py
 
 # IDE configuration
 .vscode
diff --git a/map/__init__.py b/my_awesome_app/__init__.py
similarity index 100%
rename from map/__init__.py
rename to my_awesome_app/__init__.py
diff --git a/map/cool_module.py b/my_awesome_app/cool_module.py
similarity index 100%
rename from map/cool_module.py
rename to my_awesome_app/cool_module.py
diff --git a/pyproject.toml b/pyproject.toml
index f2bcff26cc05035893e4ba3a4689f94ccc29e925..0dac729a29ca7703f10416c818c896a94f06b7e8 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -7,7 +7,7 @@ requires = [
 build-backend = "setuptools.build_meta"
 
 [tool.setuptools_scm]
-write_to = "map/_version.py"
+write_to = "my_awesome_app/_version.py"
 
 [tool.pylint]
 ignore = "_version.py"
diff --git a/tests/test_cool_module.py b/tests/test_cool_module.py
index da1002b8b66176f7efb5e24c3b4748d0eb49ed51..4ab4889a09bfa270c4b4a14679839277f67d6934 100644
--- a/tests/test_cool_module.py
+++ b/tests/test_cool_module.py
@@ -1,7 +1,7 @@
 """Testing of the Cool Module"""
 from unittest import TestCase
 
-from map.cool_module import greeter
+from my_awesome_app.cool_module import greeter
 
 
 class TestCoolModule(TestCase):
diff --git a/tox.ini b/tox.ini
index c0530645e8f647ea7d94921271c1227dcd3522b0..d5388949afbca56f8f7bd3c979409c7cfd78d3b0 100644
--- a/tox.ini
+++ b/tox.ini
@@ -34,8 +34,8 @@ commands =
     black: {envpython} -m black --version
     black: {envpython} -m black --check --diff .
     pylint: {envpython} -m pylint --version
-    pylint: {envpython} -m pylint map tests
-    format: {envpython} -m autopep8 -v -aa --in-place --recursive map
+    pylint: {envpython} -m pylint my_awesome_app tests
+    format: {envpython} -m autopep8 -v -aa --in-place --recursive my_awesome_app
     format: {envpython} -m autopep8 -v -aa --in-place --recursive tests
     format: {envpython} -m black -v .