This repository has been archived on 2023-02-09. You can view files and clone it, but cannot push or open issues or pull requests.
Files
blender-file/setup.py
2016-12-02 10:41:53 +01:00

18 lines
525 B
Python

from setuptools import setup, find_packages
setup(
name='blender-file',
version='1.0',
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=find_packages('.', exclude=['tests']),
tests_require=[
'pytest>=2.9.1',
'pytest-cov>=2.2.1',
],
zip_safe=True,
)