retroforth/rel/python/setup.py
crc f51e345931 nga-python: add Makefile.python target to package, upload for pypi (#23)
FossilOrigin-Name: 3ad6ae382f4a6fb777d52cee8bf892ad6c5174642ea64c24fcfd8e5e372c3c6e
2021-01-18 15:43:33 +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',
)