1#!/usr/bin/env python3
2# encoding: utf-8
3
4import setuptools
5
6with open("README", "r", encoding="utf-8") as fh:
7    long_description = fh.read()
8
9setuptools.setup(
10    name="retroforth",
11    version="2021.1",
12    author="Charles Childers",
13    author_email="crc@forthworks.com",
14    description="RetroForth is a modern, pragmatic Forth",
15    long_description=long_description,
16    long_description_content_type="text/markdown",
17    url="http://forthworks.com/retro",
18    packages=setuptools.find_packages(),
19    classifiers=[
20        "Programming Language :: Python :: 3",
21        "License :: OSI Approved :: ISC License (ISCL)",
22        "Operating System :: OS Independent",
23    ],
24    python_requires=">=3.6",
25)
26