/setup.py
https://github.com/groteworld/pikalang · Python · 40 lines · 34 code · 3 blank · 3 comment · 1 complexity · 1c21e8dc8443fb2389bbaf56933ad2df MD5 · raw file
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
- """Pikalang setup script."""
- from setuptools import setup
- __VERSION__ = "0.2.1"
- if __name__ == "__main__":
- setup(
- name="pikalang",
- version=__VERSION__,
- description="A brainfuck derivative based off the vocabulary of Pikachu.",
- license="MIT",
- keywords="esoteric programming language brainfuck",
- author="Blake Grotewold",
- author_email="hello@grote.world",
- url="https://github.com/grotewold/pikalang",
- py_modules=["pikalang", "pikalang.cli", "pikalang.interpreter", "setup"],
- install_requires=["ply"],
- entry_points={"console_scripts": ["pikalang = pikalang.cli:main"]},
- classifiers=[
- "Development Status :: 4 - Beta",
- "Environment :: Console",
- "Intended Audience :: Developers",
- "Intended Audience :: Science/Research",
- "License :: OSI Approved :: MIT License",
- "Operating System :: OS Independent",
- "Programming Language :: Python",
- "Programming Language :: Python :: 2",
- "Programming Language :: Python :: 2.6",
- "Programming Language :: Python :: 2.7",
- "Programming Language :: Python :: 3",
- "Programming Language :: Python :: 3.4",
- "Programming Language :: Python :: 3.5",
- "Programming Language :: Python :: 3.6",
- "Programming Language :: Python :: 3.7",
- "Programming Language :: Python :: Implementation :: PyPy",
- ],
- )