X-Git-Url: https://code.kerkeslager.com/?p=fwx;a=blobdiff_plain;f=setup.py;h=fd073a8c9bd8bb59d0807d85cecee9dff6df4394;hp=905fc49c88ff439c50daa5c5b64c72f01a3757dc;hb=6e58ee6eb35b9a9ad9bd56de5e14eadb61f7ac52;hpb=5aa38ff48b5df06212ae249abb0c96b9269d239d diff --git a/setup.py b/setup.py index 905fc49..fd073a8 100644 --- a/setup.py +++ b/setup.py @@ -4,19 +4,20 @@ with open('README.md', 'r') as fh: long_description = fh.read() setuptools.setup( - name='phial', + name='fwx', version='0.0.1', - scripts=['phial.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/phial', - packages=setuptools.find_packages(), + url='https://github.com/kerkeslager/fwx', + py_modules=['fwx'], 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', ], )