Documentation, back to a lower version after fixing duplicate filenames issue on...
[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     author='David Kerkeslager',
10     author_email='kerkeslager+pypi@gmail.com',
11     description="fwx isn't a framework, it's a library.",
12     long_description=long_description,
13     long_description_content_type='text/markdown',
14     url='https://github.com/kerkeslager/fwx',
15     py_modules=['fwx'],
16     classifiers=[
17         'Programming Language :: Python :: 3',
18         'License :: OSI Approved :: GNU Affero General Public License v3',
19         'Development Status :: 2 - Pre-Alpha',
20         'Intended Audience :: Developers',
21         'Operating System :: OS Independent',
22     ],
23 )