Introduce setup.py
authorAlexander Vasarab <alexander@wylark.com>
Sat, 20 Jun 2020 23:32:59 +0000 (16:32 -0700)
committerAlexander Vasarab <alexander@wylark.com>
Sat, 20 Jun 2020 23:32:59 +0000 (16:32 -0700)
setup.py [new file with mode: 0644]

diff --git a/setup.py b/setup.py
new file mode 100644 (file)
index 0000000..7ab2665
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,49 @@
+#!/usr/bin/env python
+"""munter.py distutils configuration."""
+from setuptools import setup
+
+version = "1.0.2"
+
+with open('README', encoding='utf-8') as readme_file:
+    readme = readme_file.read()
+
+setup(
+    name='munter.py',
+    version=version,
+    description=(
+        'An easy-to-use implementation of the Munter time calculation'
+    ),
+    long_description=readme,
+    long_description_content_type='text/plain',
+    author='Alexander Vasarab',
+    author_email='alexander@wylark.com',
+    url='https://wylark.com/munter',
+    packages=['munter'],
+    package_dir={'munter': 'munter'},
+    entry_points={'console_scripts': ['munter = munter.__main__:main']},
+    include_package_data=True,
+    python_requires='>=3.6',
+    license='ISC',
+    classifiers=[
+        "Development Status :: 5 - Production/Stable",
+        "Environment :: Console",
+        "Intended Audience :: Other Audience",
+        "Intended Audience :: Developers",
+        "Natural Language :: English",
+        "License :: OSI Approved :: ISC License (ISCL)",
+        "Programming Language :: Python :: 3 :: Only",
+        "Programming Language :: Python :: 3",
+        "Programming Language :: Python :: 3.6",
+        "Programming Language :: Python :: 3.7",
+        "Programming Language :: Python :: 3.8",
+        "Programming Language :: Python",
+        "Topic :: Software Development",
+        "Topic :: Software Development :: Libraries :: Python Modules",
+    ],
+    keywords=[
+        "munter",
+        "tour planning",
+        "trip planning",
+        "time estimate",
+    ],
+)