소스 검색

added pytest to setup.py tests_require

Drew Dolgert 2 년 전
부모
커밋
5f2f783a24
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      setup.py

+ 2 - 1
setup.py

@@ -74,5 +74,6 @@ setup(
     },
     include_package_data=True,
     python_requires=">=3.6",
-    install_requires=['pybind11', 'pybind11-global', 'pybind11-stubgen']
+    install_requires=['pybind11', 'pybind11-global', 'pybind11-stubgen'],
+    tests_require = ['pytest'],
 )