ipython-sql/setup.py

39 lines
1.1 KiB
Python

from setuptools import setup, find_packages
import sys, os
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.rst')).read()
NEWS = open(os.path.join(here, 'NEWS.txt')).read()
version = '0.1'
install_requires = [
# List your project dependencies here.
# For more details, see:
# http://packages.python.org/distribute/setuptools.html#declaring-dependencies
]
setup(name='ipython-sql',
version=version,
description="RDBMS access via IPython",
long_description=README + '\n\n' + NEWS,
classifiers=[
# Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
],
keywords='database ipython postgresql mysql',
author='Catherine Devlin',
author_email='catherine.devlin@gmail.com',
url='pypi.python.org/pypi/ipython-sql',
license='MIT',
packages=find_packages('src'),
package_dir = {'': 'src'},include_package_data=True,
zip_safe=False,
install_requires=install_requires,
entry_points={
'console_scripts':
['ipython-sql=ipythonsql:main']
}
)