Skip to content

Commit

Permalink
added "license" entry to extension
Browse files Browse the repository at this point in the history
prepared for egg package
  • Loading branch information
fancycode committed Sep 28, 2006
1 parent 7c29c45 commit d9518aa
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,14 @@
#
import sys, os
from warnings import warn
from distutils.core import setup, Extension

# set this to True to create an egg package
BUILD_EGG = False

if BUILD_EGG:
from setuptools import setup, Extension
else:
from distutils.core import setup, Extension

PYTHON_VERSION=sys.version[:3]
PYTHON_PREFIX=sys.prefix
Expand Down Expand Up @@ -115,6 +122,7 @@ class UnsupportedPlatformWarning(Warning):
author = "Joachim Bauch",
author_email = "mail@joachim-bauch.de",
url = "http://www.joachim-bauch.de",
license = 'LGPL',
py_modules=modules,
ext_modules=extens,
)
Expand Down

0 comments on commit d9518aa

Please sign in to comment.