From 988f580a00df5c56efb55f5d6ee5cb00f815fa6b Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Tue, 10 Jul 2012 19:41:54 -0600 Subject: [PATCH] setup.py: improve metadata --- interfaces/python/setup.py | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/interfaces/python/setup.py b/interfaces/python/setup.py index f3bdf92b..40457f04 100755 --- a/interfaces/python/setup.py +++ b/interfaces/python/setup.py @@ -4,8 +4,17 @@ from distutils.core import setup, Extension from generator import generate_object_files -setup(name="_aubio", version="1.0", +setup(name='aubio', + version = '0.4.0alpha', packages = ['aubio'], + description = 'interface to the aubio library', + long_description = 'interface to the aubio library', + license = 'GNU/GPL version 3', + author = 'Paul Brossier', + author_email = 'piem@aubio.org', + maintainer = 'Paul Brossier', + maintainer_email = 'piem@aubio.org', + url = 'http://aubio.org/', ext_modules = [ Extension("_aubio", ["aubiomodule.c", -- 2.26.2