symek / open-gto

Automatically exported from code.google.com/p/open-gto
Other
0 stars 0 forks source link

creating .egg file for distribution #7

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
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