diff options
author | Frederick Muriuki Muriithi | 2023-09-29 09:22:51 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2023-09-29 12:41:01 +0300 |
commit | 90d1b58ebd169158dd2022565ce23d78c9230085 (patch) | |
tree | 5ca9bb38c17b66fc48ade56a2ee275ce3771e556 | |
parent | acd1a3d29900cff70ccc82dbe8ad1dc4b4c0fe8e (diff) | |
download | gn-auth-90d1b58ebd169158dd2022565ce23d78c9230085.tar.gz |
Make migrations directory a package.
-rw-r--r-- | migrations/__init__.py | 1 | ||||
-rw-r--r-- | migrations/auth/__init__.py | 1 | ||||
-rwxr-xr-x | setup.py | 2 |
3 files changed, 3 insertions, 1 deletions
diff --git a/migrations/__init__.py b/migrations/__init__.py new file mode 100644 index 0000000..cedf48d --- /dev/null +++ b/migrations/__init__.py @@ -0,0 +1 @@ +"""Migrations package""" diff --git a/migrations/auth/__init__.py b/migrations/auth/__init__.py new file mode 100644 index 0000000..1358c9a --- /dev/null +++ b/migrations/auth/__init__.py @@ -0,0 +1 @@ +"Auth(entic|oris)ation package." @@ -42,7 +42,7 @@ setup(author="Frederick M. Muriithi", long_description=LONG_DESCRIPTION, long_description_content_type="text/markdown", name="gn-auth", - packages = get_packages("./gn_auth"), + packages = get_packages("./gn_auth") + get_packages("./migrations"), url="https://github.com/genenetwork/gn-auth", version="0.0.1", tests_require=["pytest", "hypothesis"], |