From 6e58ee6eb35b9a9ad9bd56de5e14eadb61f7ac52 Mon Sep 17 00:00:00 2001 From: David Kerkeslager Date: Thu, 28 Nov 2019 21:28:44 -0500 Subject: [PATCH] Documentation, back to a lower version after fixing duplicate filenames issue on pypi --- README.md | 10 ++++++++++ setup.py | 5 ++--- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 5e97c1e..aa94ddc 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,13 @@ # fwx fwx isn't a framework, it's a library. + +fwx is used for the same kinds of applications as frameworks like Django or +Flask, but it works differently. Frameworks make you write code that the +framework then calls: the tool is using your code, not the other way +around. fxw is primarily a collection of functions, which you call from your +code. This way you're using the tool: the correct order of things. + +## Installation + + pip install fwx diff --git a/setup.py b/setup.py index 8d1b9e3..fd073a8 100644 --- a/setup.py +++ b/setup.py @@ -6,14 +6,13 @@ with open('README.md', 'r') as fh: setuptools.setup( name='fwx', version='0.0.1', - scripts=['fwx.py'] , author='David Kerkeslager', author_email='kerkeslager+pypi@gmail.com', - description='A minimalist functional web framework', + description="fwx isn't a framework, it's a library.", long_description=long_description, long_description_content_type='text/markdown', url='https://github.com/kerkeslager/fwx', - packages=setuptools.find_packages(), + py_modules=['fwx'], classifiers=[ 'Programming Language :: Python :: 3', 'License :: OSI Approved :: GNU Affero General Public License v3', -- 2.20.1