forked from OpenBigDataPlatform/pyjdbc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (26 loc) · 882 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
from setuptools import setup
setup(
name='pyjdbc',
version='0.2.2',
author='OpenBigDataPlatform',
license='Apache-2.0',
url='https://github.com/OpenBigDataPlatform/pyjdbc',
description='Use JDBC drivers to provide DB API 2.0 python database interface',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
keywords='dbapi jdbc',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Programming Language :: Java',
'Programming Language :: Python :: 3',
'Topic :: Database',
'Topic :: Software Development :: Libraries :: Java Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
],
packages=['pyjdbc'],
install_requires=[
'JPype1>=1.0.1',
'sqlparams>=3.0.0'
],
)