Fix setup.py

This commit is contained in:
Dalai Felinto
2016-12-01 17:41:41 +01:00
parent fb1c363254
commit 443b0760f8

View File

@@ -1,4 +1,4 @@
from setuptools import setup from setuptools import setup, find_packages
setup( setup(
name='blender-file', name='blender-file',
@@ -8,7 +8,7 @@ setup(
author='At Mind B.V. - Jeroen Bakker, Blender Foundation - Campbell Barton', author='At Mind B.V. - Jeroen Bakker, Blender Foundation - Campbell Barton',
author_email='foundation@blender.org', author_email='foundation@blender.org',
license='GNU General Public License v2 or later (GPLv2+)', license='GNU General Public License v2 or later (GPLv2+)',
packages=setuptools.find_packages('.', exclude=['tests']), packages=find_packages('.', exclude=['tests']),
tests_require=[ tests_require=[
'pytest', 'pytest',
], ],