Initial attempt of creating a package

This commit is contained in:
Dalai Felinto
2016-11-30 21:58:59 +01:00
parent c8eed75caa
commit 4205ccf7ab

13
setup.py Normal file
View File

@@ -0,0 +1,13 @@
from setuptools import setup
setup(
name='blender_file',
version='0.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'],
zip_safe=False,
)