From: Mike Bayer Date: Thu, 27 Oct 2005 06:19:28 +0000 (+0000) Subject: easyinstall build X-Git-Tag: rel_0_1_0~434 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=71d9f40211ca10c62f7ace80580e4e85581ab712;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git easyinstall build --- diff --git a/setup.py b/setup.py index 1d737414f9..0c4eea0534 100644 --- a/setup.py +++ b/setup.py @@ -1,21 +1,26 @@ -#!/usr/bin/env python - - - -from distutils.core import setup -import sys - -sys.path.append('./lib') +from ez_setup import use_setuptools +use_setuptools() +from setuptools import setup, find_packages setup(name = "SQLAlchemy", - version = "0.91", + version = "0.91alpha", description = "Database Abstraction Library", author = "Mike Bayer", author_email = "mike_mp@zzzcomputing.com", url = "http://sqlalchemy.sourceforge.net", - packages = ["sqlalchemy", "sqlalchemy.databases"], - package_dir = {'' : 'lib'}, - license = "GNU Lesser General Public License" + packages = find_packages('lib'), + package_dir = {'':'lib'}, + license = "GNU Lesser General Public License", + long_description = """A Python SQL toolkit and object relational mapper for application developers.""", + classifiers = [ + "Development Status :: 3 - Alpha", + "Intended Audience :: Developers", + "License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)", + "Programming Language :: Python", + "Topic :: Database :: Front-Ends", + ] ) + +