Change the name of the project from phial to fwx, to avoid pypi conflict
[fwx] / setup.py
index 905fc49..8d1b9e3 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -4,19 +4,21 @@ with open('README.md', 'r') as fh:
     long_description = fh.read()
 
 setuptools.setup(
-    name='phial',
+    name='fwx',
     version='0.0.1',
-    scripts=['phial.py'] ,
+    scripts=['fwx.py'] ,
     author='David Kerkeslager',
     author_email='kerkeslager+pypi@gmail.com',
     description='A minimalist functional web framework',
     long_description=long_description,
     long_description_content_type='text/markdown',
-    url='https://github.com/kerkeslager/phial',
+    url='https://github.com/kerkeslager/fwx',
     packages=setuptools.find_packages(),
     classifiers=[
         'Programming Language :: Python :: 3',
-        'License :: OSI Approved :: MIT License',
+        'License :: OSI Approved :: GNU Affero General Public License v3',
+        'Development Status :: 2 - Pre-Alpha',
+        'Intended Audience :: Developers',
         'Operating System :: OS Independent',
     ],
 )