Skip to content

Commit

Permalink
cleanup and prepare for 0.9 release
Browse files Browse the repository at this point in the history
  • Loading branch information
gijzelaerr committed Jan 7, 2015
1 parent 1685732 commit 1133240
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 11 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include README.rst *.py requirements.txt
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
python-monetdb
sqlalchemy
python-monetdb >= 11.19.3.2
sqlalchemy >= 0.8
22 changes: 13 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,24 @@
"""
from setuptools import find_packages, setup
import os
readme = os.path.join(os.path.dirname(__file__), 'README.rst')

from sqlalchemy_monetdb import __version__


readme = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()

req_file = os.path.join(os.path.dirname(__file__), 'requirements.txt')
requirements = [i.strip() for i in open(req_file).readlines()]

setup_params = dict(
name="sqlalchemy_monetdb",
version="0.2",
version=__version__,
description="SQLAlchemy dialect for MonetDB",
author="Gijs Molenaar",
author_email="[email protected]",
long_description=open(readme).read(),
long_description=readme,
classifiers=[
'Development Status :: 4 - Beta',
"Development Status :: 5 - Production/Stable",
'Environment :: Console',
'Intended Audience :: Developers',
'Programming Language :: Python',
Expand All @@ -31,13 +37,11 @@
test_suite="run_tests.setup_py_test",
zip_safe=False,
entry_points={
"sqlalchemy.dialects": ["monetdb = sqlalchemy_monetdb.dialect:MonetDialect"]
"sqlalchemy.dialects":
["monetdb = sqlalchemy_monetdb.dialect:MonetDialect"]
},
license="MIT",
install_requires=[
'python-monetdb',
'sqlalchemy',
]
install_requires=requirements
)

if __name__ == '__main__':
Expand Down
2 changes: 2 additions & 0 deletions sqlalchemy_monetdb/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
"""
SQLAlchemy backend for MonetDB
"""

__version__ = '0.9'

0 comments on commit 1133240

Please sign in to comment.