Change the name of the project from phial to fwx, to avoid pypi conflict
[fwx] / setup.py
1 import setuptools
2
3 with open('README.md', 'r') as fh:
4     long_description = fh.read()
5
6 setuptools.setup(
7     name='fwx',
8     version='0.0.1',
9     scripts=['fwx.py'] ,
10     author='David Kerkeslager',
11     author_email='kerkeslager+pypi@gmail.com',
12     description='A minimalist functional web framework',
13     long_description=long_description,
14     long_description_content_type='text/markdown',
15     url='https://github.com/kerkeslager/fwx',
16     packages=setuptools.find_packages(),
17     classifiers=[
18         'Programming Language :: Python :: 3',
19         'License :: OSI Approved :: GNU Affero General Public License v3',
20         'Development Status :: 2 - Pre-Alpha',
21         'Intended Audience :: Developers',
22         'Operating System :: OS Independent',
23     ],
24 )