diff --git a/Makefile b/Makefile index b592847..ab029af 100644 --- a/Makefile +++ b/Makefile @@ -9,4 +9,4 @@ run-checks : black --check . flake8 . mypy . - CUDA_VISIBLE_DEVICES='' pytest -v --color=yes --doctest-modules tests/ jaffle_shop_generator/ + pytest -v --color=yes --doctest-modules tests/ jaffle_shop_generator/ diff --git a/README.md b/README.md index 5e71102..b61a41e 100644 --- a/README.md +++ b/README.md @@ -1 +1,3 @@ -# jaffle-shop-generator +# 🥪 Jaffle Shop Generator 🏭 + +Have you ever wanted to make a **_lot_** of jaffles? Well you're in luck. diff --git a/docs/source/conf.py b/docs/source/conf.py index 8b08659..b69ddbc 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -22,9 +22,9 @@ # -- Project information ----------------------------------------------------- -project = "jaffle-shop-generator" -copyright = f"{datetime.today().year}, Allen Institute for Artificial Intelligence" -author = "Allen Institute for Artificial Intelligence" +project = "Jaffle Shop Generator" +copyright = f"{datetime.today().year}, dbt Labs™️" +author = "dbt Labs™️" version = VERSION_SHORT release = VERSION @@ -82,7 +82,7 @@ # html_theme = "furo" -html_title = f"jaffle-shop-generator v{VERSION}" +html_title = f"Jaffle Shop Generator v{VERSION}" # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, diff --git a/docs/source/index.rst b/docs/source/index.rst index 9fe5f76..ab5013b 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -3,7 +3,7 @@ You can adapt this file completely to your liking, but it should at least contain the root `toctree` directive. -**jaffle-shop-generator** +**🥪 Jaffle Shop Generator 🏭** =============== .. automodule:: jaffle_shop_generator @@ -30,16 +30,14 @@ Contents Team ---- -**jaffle-shop-generator** is developed and maintained by the AllenNLP team, backed by -`the Allen Institute for Artificial Intelligence (AI2) `_. -AI2 is a non-profit institute with the mission to contribute to humanity through high-impact AI research and engineering. +The **jaffle shop generator** is developed and maintained by the dbt Labs™️ team. To learn more about who specifically contributed to this codebase, see `our contributors `_ page. License ------- -**jaffle-shop-generator** is licensed under `Apache 2.0 `_. +The **jaffle shop generator** is licensed under `Apache 2.0 `_. A full copy of the license can be found `on GitHub `_. Indices and tables diff --git a/jaffle_shop_generator/__init__.py b/src/__init__.py similarity index 100% rename from jaffle_shop_generator/__init__.py rename to src/__init__.py diff --git a/jaffle_shop_generator/py.typed b/src/py.typed similarity index 100% rename from jaffle_shop_generator/py.typed rename to src/py.typed diff --git a/jaffle_shop_generator/version.py b/src/version.py similarity index 100% rename from jaffle_shop_generator/version.py rename to src/version.py