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

17 lines
490 B
Python
Raw Permalink Normal View History

2016-12-01 17:41:41 +01:00
from setuptools import setup, find_packages
2016-11-30 21:58:59 +01:00
setup(
name='blender-file',
version='1.0',
2016-11-30 21:58:59 +01:00
description='Blender File',
2016-12-01 14:58:59 +01:00
url='https://developer.blender.org/diffusion/BBF/',
2016-11-30 21:58:59 +01:00
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+)',
2016-12-01 17:41:41 +01:00
packages=find_packages('.', exclude=['tests']),
tests_require=[
'pytest',
],
2016-11-30 21:58:59 +01:00
zip_safe=False,
)