/setup.py

https://github.com/groteworld/pikalang · Python · 40 lines · 34 code · 3 blank · 3 comment · 1 complexity · 1c21e8dc8443fb2389bbaf56933ad2df MD5 · raw file

  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. """Pikalang setup script."""
  4. from setuptools import setup
  5. __VERSION__ = "0.2.1"
  6. if __name__ == "__main__":
  7. setup(
  8. name="pikalang",
  9. version=__VERSION__,
  10. description="A brainfuck derivative based off the vocabulary of Pikachu.",
  11. license="MIT",
  12. keywords="esoteric programming language brainfuck",
  13. author="Blake Grotewold",
  14. author_email="hello@grote.world",
  15. url="https://github.com/grotewold/pikalang",
  16. py_modules=["pikalang", "pikalang.cli", "pikalang.interpreter", "setup"],
  17. install_requires=["ply"],
  18. entry_points={"console_scripts": ["pikalang = pikalang.cli:main"]},
  19. classifiers=[
  20. "Development Status :: 4 - Beta",
  21. "Environment :: Console",
  22. "Intended Audience :: Developers",
  23. "Intended Audience :: Science/Research",
  24. "License :: OSI Approved :: MIT License",
  25. "Operating System :: OS Independent",
  26. "Programming Language :: Python",
  27. "Programming Language :: Python :: 2",
  28. "Programming Language :: Python :: 2.6",
  29. "Programming Language :: Python :: 2.7",
  30. "Programming Language :: Python :: 3",
  31. "Programming Language :: Python :: 3.4",
  32. "Programming Language :: Python :: 3.5",
  33. "Programming Language :: Python :: 3.6",
  34. "Programming Language :: Python :: 3.7",
  35. "Programming Language :: Python :: Implementation :: PyPy",
  36. ],
  37. )