Introduce setup.py
[munter.git] / setup.py
1 #!/usr/bin/env python
2 """munter.py distutils configuration."""
3 from setuptools import setup
4
5 version = "1.0.2"
6
7 with open('README', encoding='utf-8') as readme_file:
8 readme = readme_file.read()
9
10 setup(
11 name='munter.py',
12 version=version,
13 description=(
14 'An easy-to-use implementation of the Munter time calculation'
15 ),
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',
21 packages=['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',
26 license='ISC',
27 classifiers=[
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",
42 ],
43 keywords=[
44 "munter",
45 "tour planning",
46 "trip planning",
47 "time estimate",
48 ],
49 )