diff options
author | Edi Feschiyan <efeschiyan@pm.me> | 2020-08-07 18:59:26 +0300 |
---|---|---|
committer | Edi Feschiyan <efeschiyan@pm.me> | 2020-08-07 18:59:26 +0300 |
commit | ab6ef21b01b00509ced37911ae962186b2547805 (patch) | |
tree | f5106887f913f7a6713f567f3ec011586f74c35a | |
parent | 4ddeffa2e1970f85fb26cfb3193081f265ce9266 (diff) |
Adding changes to setup.py to include ini files from MANIFEST.in
-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=[ |