diff --git a/.dockerignore b/.dockerignore index fc23908..55c1997 100644 --- a/.dockerignore +++ b/.dockerignore @@ -3,6 +3,7 @@ .db .env .git +build dist *.egg* __pycache__ diff --git a/.gitignore b/.gitignore index 0e443b2..d0375e2 100644 --- a/.gitignore +++ b/.gitignore @@ -3,6 +3,7 @@ .db .env dist +build *.egg* __pycache__ test.py diff --git a/LICENSE b/LICENSE.txt similarity index 100% rename from LICENSE rename to LICENSE.txt diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..42d69b2 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,2 @@ +recursive-include static * +recursive-include templates * diff --git a/setup.py b/setup.py index 6d91971..9f8d6c6 100644 --- a/setup.py +++ b/setup.py @@ -17,6 +17,7 @@ setup( url="https://git.crystalyx.net/Xefir/PyNyaaTa", packages=find_packages(), install_requires=requirements, + include_package_data=True, classifiers=[ "Programming Language :: Python :: 3", "Operating System :: OS Independent",