dneg/open-gto

creating .egg file for distribution

Opened this issue · 0 comments

It's just a tiny change:

in the plugin/python/setup.py file

instead of using 

[code]
from distutils.core import setup, Extension
[/code]

you can replace this line with 

[code]
from setuptools import setup, Extension
[code]

with this change you'll be able to create a .egg file with :
python setup.py bdist_egg

Cheers.



Original issue reported on code.google.com by lorenzo....@gmail.com on 24 Jul 2010 at 3:08