Skip to content

Commit 34223ab

Browse files
committed
prepare for 0.2
1 parent 415bcf4 commit 34223ab

2 files changed

Lines changed: 15 additions & 14 deletions

File tree

setup.cfg

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
[egg_info]
2-
tag_build = dev
3-
41
[nosetests]
52
with-sqla_testing = true
63
where = test

setup.py

Lines changed: 15 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -9,22 +9,22 @@
99

1010
setup_params = dict(
1111
name="sqlalchemy_monetdb",
12-
version="0.1",
12+
version="0.2",
1313
description="SQLAlchemy dialect for MonetDB",
1414
author="Gijs Molenaar",
1515
author_email="gijsmolenaar@gmail.com",
1616
long_description=open(readme).read(),
1717
classifiers=[
18-
'Development Status :: 4 - Beta',
19-
'Environment :: Console',
20-
'Intended Audience :: Developers',
21-
'Programming Language :: Python',
22-
'Programming Language :: Python :: 3',
23-
'Programming Language :: Python :: Implementation :: CPython',
24-
'Programming Language :: Python :: Implementation :: PyPy',
25-
'Topic :: Database :: Front-Ends',
26-
],
27-
keywords='MonetDB SQLAlchemy',
18+
'Development Status :: 4 - Beta',
19+
'Environment :: Console',
20+
'Intended Audience :: Developers',
21+
'Programming Language :: Python',
22+
'Programming Language :: Python :: 3',
23+
'Programming Language :: Python :: Implementation :: CPython',
24+
'Programming Language :: Python :: Implementation :: PyPy',
25+
'Topic :: Database :: Front-Ends',
26+
],
27+
keywords='MonetDB SQLAlchemy',
2828
packages=find_packages(),
2929
include_package_data=True,
3030
tests_require=['nose >= 0.11'],
@@ -34,6 +34,10 @@
3434
"sqlalchemy.dialects": ["monetdb = sqlalchemy_monetdb.base:MDBDialect"]
3535
},
3636
license="MIT",
37+
install_requires=[
38+
'python-monetdb',
39+
'sqlalchemy',
40+
]
3741
)
3842

3943
if __name__ == '__main__':

0 commit comments

Comments
 (0)