-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (38 loc) · 1.23 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
"""
Flask-Ruko
-------------
A Flask extension to connect to a Ruko database
"""
from setuptools import setup
setup(
name='Flask-Ruko',
version='1.0.0',
url='https://github.com/rukodb/flask-ruko',
license='MIT',
author='Matthew Scholefield',
author_email='[email protected]',
description='A Flask extension to connect to a Ruko database',
long_description=__doc__,
py_modules=['flask_ruko'],
install_requires=[
'Flask',
'werkzeug',
'ruko'
],
keywords='ruko database in-memory',
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'License :: OSI Approved :: MIT License',
'Topic :: Database :: Database Engines/Servers',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8'
]
)