Documentation, back to a lower version after fixing duplicate filenames issue on...
authorDavid Kerkeslager <kerkeslager@gmail.com>
Fri, 29 Nov 2019 02:28:44 +0000 (21:28 -0500)
committerDavid Kerkeslager <kerkeslager@gmail.com>
Fri, 29 Nov 2019 02:28:44 +0000 (21:28 -0500)
README.md
setup.py

index 5e97c1e..aa94ddc 100644 (file)
--- 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
index 8d1b9e3..fd073a8 100644 (file)
--- 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',