Fix the charset
[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.10',
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     packages=setuptools.find_packages('src'),
16     package_dir={ '': 'src' },
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 )