retroforth/rel/python/setup.py
crc aff0fb3c6e run black to reformat Python files
FossilOrigin-Name: 3b06a15e14d8f808dbefdde1d129a4f768f803fbb3ce7fe39a82e60ff7ed88e7
2021-01-20 17:41:34 +00:00

25 lines
738 B
Python

#!/usr/bin/env python3
# encoding: utf-8
import setuptools
with open("README", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="retroforth",
version="2021.1",
author="Charles Childers",
author_email="crc@forthworks.com",
description="RetroForth is a modern, pragmatic Forth",
long_description=long_description,
long_description_content_type="text/markdown",
url="http://forthworks.com/retro",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: ISC License (ISCL)",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
)