1from setuptools import setup  # type: ignore
2
3setup(
4    name='banal',
5    version='1.0.1',
6    description='Commons of banal micro-functions for Python.',
7    long_description='',
8    classifiers=[
9        'Intended Audience :: Developers',
10        'License :: OSI Approved :: MIT License',
11        'Operating System :: OS Independent',
12        'Programming Language :: Python :: 3.5',
13        'Programming Language :: Python :: 3.6',
14    ],
15    keywords='utilities commons functions',
16    author='Friedrich Lindenberg',
17    author_email='friedrich@pudo.org',
18    url='http://github.com/pudo/banal',
19    license='MIT',
20    namespace_packages=[],
21    package_data={'banal': ['py.typed']},
22    packages=['banal'],
23    include_package_data=True,
24    zip_safe=False,
25    install_requires=[],
26    tests_require=[
27        'mypy',
28        'wheel'
29    ],
30    entry_points={}
31)
32