From a2c5e861c44693b46c1b5b66ecede3c5ef2f23bb Mon Sep 17 00:00:00 2001 From: "Travis E. Oliphant" Date: Sat, 10 Nov 2012 19:01:32 -0600 Subject: [PATCH] Change author and email and version --- llvm/__init__.py | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/llvm/__init__.py b/llvm/__init__.py index 15720f3..1145d74 100644 --- a/llvm/__init__.py +++ b/llvm/__init__.py @@ -2,7 +2,7 @@ Common classes related to LLVM. """ -__version__ = '0.8.4' +__version__ = '0.9' from weakref import WeakValueDictionary diff --git a/setup.py b/setup.py index 88281dc..8249671 100644 --- a/setup.py +++ b/setup.py @@ -126,8 +126,8 @@ kwds['long_description'] = open('README.rst').read() setup( name = 'llvmpy', description = 'Python bindings for LLVM', - author = 'Mahadevan R', - author_email = 'mdevan@mdevan.org', + author = 'Continuum Analytics, Inc.', + author_email = 'llvmpy@continuum.io', url = 'http://www.llvmpy.org/', packages = ['llvm', 'llvm_cbuilder', 'llpython'], py_modules = ['llvm.core'],