2 """munter.py distutils configuration."""
3 from setuptools
import setup
7 with
open('README', encoding
='utf-8') as readme_file
:
8 readme
= readme_file
.read()
14 'An easy-to-use implementation of the Munter time calculation'
16 long_description
=readme
,
17 long_description_content_type
='text/plain',
18 author
='Alexander Vasarab',
19 author_email
='alexander@wylark.com',
20 url
='https://wylark.com/munter',
22 package_dir
={'munter': 'munter'},
23 entry_points
={'console_scripts': ['munter = munter.__main__:main']},
24 include_package_data
=True,
25 python_requires
='>=3.6',
28 "Development Status :: 5 - Production/Stable",
29 "Environment :: Console",
30 "Intended Audience :: Other Audience",
31 "Intended Audience :: Developers",
32 "Natural Language :: English",
33 "License :: OSI Approved :: ISC License (ISCL)",
34 "Programming Language :: Python :: 3 :: Only",
35 "Programming Language :: Python :: 3",
36 "Programming Language :: Python :: 3.6",
37 "Programming Language :: Python :: 3.7",
38 "Programming Language :: Python :: 3.8",
39 "Programming Language :: Python",
40 "Topic :: Software Development",
41 "Topic :: Software Development :: Libraries :: Python Modules",