-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (24 loc) · 798 Bytes
/
setup.py
File metadata and controls
24 lines (24 loc) · 798 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
setup(
name='Flapp',
version='0.1',
url='http://flapp-demo.appspot.com/',
license='BSD',
author='Brian Luft',
author_email='brian@unbracketed.com',
description='Tool for making Flask project templates ready to run on Google App Engine',
long_description=__doc__,
packages=['flapp'],
namespace_packages=['flapp'],
zip_safe=False,
platforms='any',
install_requires=[],
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)