import setuptools setuptools.setup( name="JAPL - Just another programming language", version="0.1.1", author="nocturn9x", author_email="nocturn9x@intellivoid.net", description="The JAPL programming language", packages=setuptools.find_packages(), classifiers=[ "Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", ], python_requires='>=3.6', )