Parcourir la source

update setup.py

  * Include pytest as a test requirement
Oz N Tiram il y a 9 ans
Parent
commit
956f807d10
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      setup.py

+ 1 - 1
setup.py

@@ -8,7 +8,7 @@ setup(name='blogit',
       license="GNU GPL",
       packages=find_packages(exclude=['tests']),
       install_requires=['Jinja2', 'markdown2', 'tinydb'],
-      test_requires=['beautifulsoup4']
+      test_requires=['pytest', 'beautifulsoup4']
       entry_points={
               'console_scripts': ['blogit = blogit.blogit:main']
           }