mirror of
https://github.com/kennethreitz-archive/flaskbook.git
synced 2026-06-05 07:16:13 +00:00
39 lines
1010 B
Python
39 lines
1010 B
Python
"""
|
|
Flask-Book
|
|
-------------
|
|
|
|
This is the description for that library. Why not?
|
|
"""
|
|
|
|
from setuptools import setup
|
|
|
|
setup(
|
|
name='Flask-Book',
|
|
version='0.0.1',
|
|
url='https://github.com/kenethreitz/flaskbook',
|
|
license='BSD',
|
|
author='Kenneth Reitz',
|
|
author_email='me@kennethreitz.com',
|
|
description='Meh',
|
|
long_description=__doc__,
|
|
py_modules=['flask_book'],
|
|
# if you would be using a package instead use packages instead
|
|
# of py_modules:
|
|
# packages=['flask_sqlite3'],
|
|
zip_safe=False,
|
|
include_package_data=True,
|
|
platforms='any',
|
|
install_requires=[
|
|
'Flask'
|
|
],
|
|
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'
|
|
]
|
|
)
|