]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
easyinstall build
authorMike Bayer <mike_mp@zzzcomputing.com>
Thu, 27 Oct 2005 06:19:28 +0000 (06:19 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Thu, 27 Oct 2005 06:19:28 +0000 (06:19 +0000)
setup.py

index 1d737414f9008c5d691e17e72dc106efdd01f062..0c4eea05349dffe6dd4960b86e5f238bd5316bea 100644 (file)
--- 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",
+    ]
     )
 
 
+
+