add setup.py + switch to pytest

* pytest: more modern and easy-to-use testing framework
This commit is contained in:
Yann Lanthony 2017-09-19 12:11:29 +02:00
parent 600c527221
commit 807b4cb155
2 changed files with 10 additions and 5 deletions

7
setup.py Normal file
View file

@ -0,0 +1,7 @@
from setuptools import setup
setup(
name="Meshroom",
description="Photogrammetry Software",
requires=['psutil', 'pytest', 'pySide2', "pytest"]
)