forked from buckie/flask-kdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (29 loc) · 806 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
29
30
from setuptools import setup
setup(
name='flask_kdb',
version='0.1',
py_modules=[
'flask_kdb', 'flask_kdb.utils'
],
url='github.com/buckie/flask_kdb',
license='MIT',
author='wjm',
keywords=['kdb+'],
author_email='',
zip_safe=False,
platforms='any',
description='KDB connection wrapper for Flask based on qPython',
install_requires=[
'Flask>=0.8',
'qPython>=1.0.Beta.1'
],
classifiers=[
'Development Status :: 5 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Financial and Insurance Industry',
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7'
]
)