This commit is contained in:
Kenneth Reitz
2012-03-01 15:53:28 -05:00
parent ecf5a2695a
commit f47bf37aa8
3 changed files with 38 additions and 0 deletions
View File
View File
+38
View File
@@ -0,0 +1,38 @@
"""
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'
]
)