diff options
-rw-r--r-- | MANIFEST.in | 7 | ||||
-rw-r--r-- | setup.py | 1 |
2 files changed, 7 insertions, 1 deletions
diff --git a/MANIFEST.in b/MANIFEST.in index c19ef4b..7d48f9b 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1 +1,6 @@ -recursive-include . *.ini *.json *.py *.txt *.md +include pyagl\ * +include *.txt +include tox.ini +recursive-include templates *.json +recursive-include templates *.py +recursive-include pyagl *.ini @@ -13,6 +13,7 @@ setuptools.setup( long_description_content_type="text/markdown", url="https://github.com/refresher/pyagl", packages=setuptools.find_packages(), + include_package_data=True, license="Apache 2.0", install_requires=['websockets', 'parse', 'asyncssh', 'pytest', 'pytest-asyncio', 'pytest-dependency'], classifiers=[ |