소스 검색

Add p2pd to package_data (#287)

Max Ryabinin 4 년 전
부모
커밋
b44d860538
2개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 1
      hivemind/__init__.py
  2. 1 1
      setup.py

+ 1 - 1
hivemind/__init__.py

@@ -5,4 +5,4 @@ from hivemind.server import *
 from hivemind.utils import *
 from hivemind.optim import *
 
-__version__ = '0.9.9'
+__version__ = "0.9.9.post1"

+ 1 - 1
setup.py

@@ -145,7 +145,7 @@ setup(
     author_email='mryabinin0@gmail.com',
     url="https://github.com/learning-at-home/hivemind",
     packages=find_packages(exclude=['tests']),
-    package_data={'hivemind': ['proto/*']},
+    package_data={'hivemind': ['proto/*', 'hivemind_cli/*']},
     include_package_data=True,
     license='MIT',
     setup_requires=['grpcio-tools'],