|
9 | 9 |
|
10 | 10 | setup_params = dict( |
11 | 11 | name="sqlalchemy_monetdb", |
12 | | - version="0.1", |
| 12 | + version="0.2", |
13 | 13 | description="SQLAlchemy dialect for MonetDB", |
14 | 14 | author="Gijs Molenaar", |
15 | 15 | author_email="gijsmolenaar@gmail.com", |
16 | 16 | long_description=open(readme).read(), |
17 | 17 | 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', |
28 | 28 | packages=find_packages(), |
29 | 29 | include_package_data=True, |
30 | 30 | tests_require=['nose >= 0.11'], |
|
34 | 34 | "sqlalchemy.dialects": ["monetdb = sqlalchemy_monetdb.base:MDBDialect"] |
35 | 35 | }, |
36 | 36 | license="MIT", |
| 37 | + install_requires=[ |
| 38 | + 'python-monetdb', |
| 39 | + 'sqlalchemy', |
| 40 | + ] |
37 | 41 | ) |
38 | 42 |
|
39 | 43 | if __name__ == '__main__': |
|
0 commit comments