-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
24 lines (23 loc) · 820 Bytes
/
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
from setuptools import setup
setup(
name='flask-canvas',
version='0.1',
keywords='python,facebook,canvas,oauth2',
url='https://github.com/demianbrecht/flask-canvas',
license='MIT',
author='Demian Brecht',
author_email='[email protected]',
description='A Flask extension for Facebook canvas-based apps',
py_modules=['flask_canvas'],
include_package_data=True,
platforms='any',
install_requires=['Flask'],
classifiers=[
'Environment :: Web Environment',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
'Development Status :: 4 - Beta',
])