view setup.py @ 0:4b51bcbcdb15

initial stub
author Jeff Hammel <k0scist@gmail.com>
date Tue, 15 Mar 2016 11:29:22 -0700
parents
children
line wrap: on
line source

"""
setup packaging script for sqlitex
"""

import os

version = "0.0"
dependencies = ['webob']

# allow use of setuptools/distribute or distutils
kw = {}
try:
    from setuptools import setup
    kw['entry_points'] = """
      [console_scripts]
      sqlitex = sqlitex.api:main
      sqlitex-web = sqlitex.web:main
"""
    kw['install_requires'] = dependencies
except ImportError:
    from distutils.core import setup
    kw['requires'] = dependencies

try:
    here = os.path.dirname(os.path.abspath(__file__))
    description = file(os.path.join(here, 'README.txt')).read()
except IOError:
    description = ''


setup(name='sqlitex',
      version=version,
      description="sqlite explorer via web",
      long_description=description,
      classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers
      author='Jeff Hammel',
      author_email='k0scist@gmail.com',
      url='http://k0s.org/hg/sqlitex',
      license='',
      packages=['sqlitex'],
      include_package_data=True,
      zip_safe=False,
      **kw
      )