Skip to content

Commit

Permalink
install_requires는 의존성에 관한 것이므로 빌드 시에만 의존성을 갖도록 setup_requires로 이동 #10
Browse files Browse the repository at this point in the history
  • Loading branch information
krikit committed Dec 15, 2018
1 parent f5d93fd commit 250e47f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/python/setup.py.in
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@ setup(
license='Apache 2.0',
packages=['khaiii', ],
include_package_data=True,
install_requires=['numpy', 'torch==0.4.1', 'tqdm'],
setup_requires=['pytest-runner', ],
install_requires=[],
setup_requires=['numpy', 'torch==0.4.1', 'tqdm', 'pytest-runner'],
tests_require=['pytest', ],
zip_safe=False,
cmdclass={'build': CustomBuild}
Expand Down

0 comments on commit 250e47f

Please sign in to comment.