Changeset 44

Show
Ignore:
Timestamp:
04/01/07 16:53:48 (2 years ago)
Author:
astraw
Message:

fix setup.py to allow 'register' command

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/pyosg/setup.py

    r40 r44  
    114114      version = __version__ + "-%d" % buildno, 
    115115      description = "A Python binding for OpenSceneGraph", 
    116       long_description = __doc__, 
    117116      author = "Gideon May", 
    118117      author_email = "gideon@computer.org", 
    119       download_url = "http://pyosg.sourceforge.net", 
    120       url = "http://pyosg.sourceforge.net", 
     118      maintainer = "Andrew Straw", 
     119      maintainer_email = "strawman@astraw.com", 
     120      url = "http://code.astraw.com/projects/pyosg/", 
    121121      ext_modules = extensions, 
    122122      data_files = data_files, 
    123123      package_data = package_data, 
    124       classifiers = filter(None, PYOSG_CLASSIFIERS.split("\n")), 
     124      #classifiers = filter(None, PYOSG_CLASSIFIERS.split("\n")), 
    125125      scripts = scriptfiles, 
    126126      license = "BSD License", 
    127127      packages=['PyOSG', 'PyOSG.examples', 'PyOSG.examples.Script'], 
    128       platforms=['Win32', 'Linux', 'Mac_OSX'], 
     128      #platforms=['Win32', 'Linux', 'Mac_OSX'], 
    129129) 
    130130