This repository has been archived on 2023-02-28. You can view files and clone it, but cannot push or open issues or pull requests.
Files
blender-asset-manager/setup.py

52 lines
1.3 KiB
Python
Raw Normal View History

2014-12-19 02:36:17 +01:00
# -*- coding: utf-8 -*-
2017-01-17 16:04:48 +01:00
from setuptools import setup
2014-12-19 02:36:17 +01:00
import sys
if sys.version_info < (3,):
print("Sorry, Python 2 is not supported")
sys.exit(1)
long_desc = """\
Bam Asset Manager is a tool to manage assets in Blender.
"""
requires = ['requests>=2.4']
setup(
name='blender-bam',
2017-04-21 16:24:46 +02:00
version='1.1.6',
2014-12-19 02:36:17 +01:00
url='http://developer.blender.org/project/view/55',
download_url='https://pypi.python.org/pypi/blender-bam',
license='GPLv2+',
author='Campbell Barton, Francesco Siddi',
author_email='ideasman42@gmail.com',
description='Bam Asset Manager',
long_description=long_desc,
zip_safe=False,
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Utilities',
],
platforms='any',
packages=['bam'],
include_package_data=True,
package_data={
'': ['*.txt', '*.rst'],
},
entry_points={
'console_scripts': [
'bam = bam.cli:main',
2014-12-19 02:36:17 +01:00
],
},
install_requires=requires,
)