This repository has been archived by the owner on May 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
60 lines (53 loc) · 1.61 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
"""
hipflask
-------------
A container for setting up your basic RESTful single page flask app
Sets up flask-login, flask-sqlalchemy, flask-script, flask-superadmin, and flask-migrate
Provides a basic RESTful api handler for your models
Creates a client environment using boostrap, knockout, jquery
Intended to get you up and running quickly
"""
from setuptools import setup
setup(
name='hipflask',
version='0.3.3',
url='http://github.com/robertfw/hipflask',
license='License :: OSI Approved :: MIT License',
author='Robert Warner',
author_email='[email protected]',
description='Quickstart tool for setting up common flask extensions and tools',
long_description=__doc__,
packages=['hipflask'],
zip_safe=False,
platforms='any',
install_requires=[
'Flask',
'Flask-Login',
'Flask-SQLAlchemy',
'Flask-Script',
'Flask-SuperAdmin',
'Flask-WTF',
'Jinja2',
'SQLAlchemy',
'Tempita',
'WTForms',
'Werkzeug',
'argparse',
'blinker',
'decorator',
'passlib',
'simplejson',
'sqlalchemy-migrate'
],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: JavaScript',
'Programming Language :: Python :: 2 :: Only',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)