-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
49 lines (45 loc) · 1.3 KB
/
setup.py
File metadata and controls
49 lines (45 loc) · 1.3 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
41
42
43
44
45
46
47
48
49
import os
import sys
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
sys.path.append(os.path.join(os.path.dirname(__file__), 'src'))
#path, script = os.path.split(sys.argv[0])
#os.chdir(os.path.abspath(path))
install_requires = [
'Flask==0.9',
'Flask-Admin==1.0.3',
'Flask-DebugToolbar==0.7.1',
'Flask-OAuth==0.12',
'Flask-SQLAlchemy==0.16',
'Flask-WTF==0.8',
'Jinja2==2.6',
'SQLAlchemy==0.7.9',
'WTForms==1.0.2',
'Werkzeug==0.8.3',
'argparse==1.2.1',
'blinker==1.2',
'httplib2==0.7.7',
'oauth2==1.5.211',
'wsgiref==0.1.2',
]
setup(name='biffy',
version="0.0.1",
description='Biffy: The Batteries-Included Flask-based Framework',
author='Andrew Sledge',
author_email='andrew.j.sledge@gmail.com',
url='http://sledge.io/',
install_requires=install_requires,
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)