-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (29 loc) · 1007 Bytes
/
setup.py
File metadata and controls
31 lines (29 loc) · 1007 Bytes
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
#!/usr/bin/env python
from setuptools import setup
setup(
name='Flask-SQLAlchemy-Cache',
version='0.1.5',
description='CachingQuery implementation to Flask using Flask-SQLAlchemy and Flask-Cache',
author='Iuri de Silvio',
author_email='iurisilvio@gmail.com',
url='http://www.github.com/iurisilvio/Flask-SQLAlchemy-Cache',
license='MIT',
platforms='any',
packages=['flask_sqlalchemy_cache'],
install_requires=[
'Flask>=0.9',
'Flask-Cache',
'Flask-SQLAlchemy',
],
test_suite='flask_sqlalchemy_cache.tests',
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)