setup.py 241 B

1234567891011121314
  1. import sys
  2. sys.stderr.write("""
  3. Unsupported installation method: python setup.py
  4. Please use `python -m pip install .` instead.
  5. """
  6. )
  7. #sys.exit(1)
  8. from setuptools import setup
  9. setup(
  10. name="redmail",
  11. install_requires = ["jinja2"],
  12. )