Capture package data

Signed-off-by: Dan Ryan <dan@danryan.co>
This commit is contained in:
Dan Ryan
2018-04-26 23:28:54 -04:00
parent 4a5bc94c47
commit 373073027f
+12
View File
@@ -113,6 +113,18 @@ setup(
'pipenv-resolver=pipenv.resolver:main',
]
},
package_data={
"pipenv.vendor.requests": ["*.pem"],
"pipenv.vendor.certifi": ["*.pem"],
"pipenv.patched.notpip._vendor.certifi": ["*.pem"],
"pipenv.patched.notpip._vendor.requests": ["*.pem"],
"pipenv.patched.notpip._vendor.distlib._backport": ["sysconfig.cfg"],
"pipenv.patched.notpip._vendor.distlib": ["t32.exe", "t64.exe", "w32.exe", "w64.exe"],
"pipenv.vendor.pip9._vendor.certifi": ["*.pem"],
"pipenv.vendor.pip9._vendor.requests": ["*.pem"],
"pipenv.vendor.pip9._vendor.distlib._backport": ["sysconfig.cfg"],
"pipenv.vendor.pip9._vendor.distlib": ["t32.exe", "t64.exe", "w32.exe", "w64.exe"],
},
install_requires=required,
extras_require={},
include_package_data=True,