
A nice test suit also works as API example! Most of the tests came from Bastien Montagne (mont29)
17 lines
456 B
Python
17 lines
456 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name='blender_file',
|
|
version='0.1.1',
|
|
description='Blender File',
|
|
url='https://developer.blender.org/diffusion/BBF/',
|
|
author='At Mind B.V. - Jeroen Bakker, Blender Foundation - Campbell Barton',
|
|
author_email='foundation@blender.org',
|
|
license='GNU General Public License v2 or later (GPLv2+)',
|
|
packages=['blender_file'],
|
|
tests_require=[
|
|
'pytest',
|
|
],
|
|
zip_safe=False,
|
|
)
|