Mercurial > sqlpython
comparison setup.py @ 477:920a45f244e8
setuptools optional
author | catherine@dellzilla |
---|---|
date | Fri, 12 Mar 2010 19:42:11 -0500 |
parents | d0164c122938 |
children | 8cf08822207b |
comparison
equal
deleted
inserted
replaced
476:4bd3145bff1b | 477:920a45f244e8 |
---|---|
1 from setuptools import setup, find_packages | 1 try: |
2 | 2 from setuptools import setup, find_packages |
3 except ImportError: | |
4 from distutils.core import setup | |
5 def find_packages(): | |
6 return ['sqlpython'] | |
7 | |
3 classifiers = """Development Status :: 4 - Beta | 8 classifiers = """Development Status :: 4 - Beta |
4 Intended Audience :: Information Technology | 9 Intended Audience :: Information Technology |
5 License :: OSI Approved :: MIT License | 10 License :: OSI Approved :: MIT License |
6 Programming Language :: Python | 11 Programming Language :: Python |
7 Programming Language :: SQL | 12 Programming Language :: SQL |