소스 검색

修改打包配置

wangweimin 5 년 전
부모
커밋
ebc0506cfb
1개의 변경된 파일8개의 추가작업 그리고 0개의 파일을 삭제
  1. 8 0
      setup.py

+ 8 - 0
setup.py

@@ -9,6 +9,14 @@ setup(
     author_email='wangweimin@buaa.edu.com',
     license='MIT',
     packages=find_packages(),
+    package_data={
+        # data files need to be listed both here (which determines what gets
+        # installed) and in MANIFEST.in (which determines what gets included
+        # in the sdist tarball)
+        "wsrepl": [
+            "html",
+        ],
+    },
     classifiers=[
         "Programming Language :: Python :: 3",
         "Programming Language :: Python :: 3.5",