Don't import bam in setup.py
This is a bad idea, since it requires bam to be installable even before running setup.py. Furthermore, it requires bam to be importable before being installed, which is also a bad idea.
This commit is contained in:
4
setup.py
4
setup.py
@@ -14,11 +14,9 @@ Bam Asset Manager is a tool to manage assets in Blender.
|
||||
requires = ['requests>=2.4']
|
||||
|
||||
|
||||
import bam
|
||||
|
||||
setup(
|
||||
name='blender-bam',
|
||||
version=bam.__version__,
|
||||
version='1.0',
|
||||
url='http://developer.blender.org/project/view/55',
|
||||
download_url='https://pypi.python.org/pypi/blender-bam',
|
||||
license='GPLv2+',
|
||||
|
Reference in New Issue
Block a user