-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (35 loc) · 1.06 KB
/
Copy pathsetup.py
File metadata and controls
40 lines (35 loc) · 1.06 KB
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
"""
Flask-Blitzdb
-------------
This is an extension for the Blitzdb file based NoSQL database platforms
"""
from setuptools import setup
setup(
name='flask-blitzdb',
version='0.1',
url='https://github.com/puredistortion/flask-blitzdb',
license='',
author='Dale Stirling',
author_email='feedback@puredistortion.com',
description='Flask extension for blitzdb',
long_description=__doc__,
py_modules=['flask_blitzdb'],
zip_safe=False,
include_package_data=True,
platforms='any',
install_requires=[
'Flask',
'blitzdb'
],
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Database :: Front-Ends',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware'
]
)