| 1234567891011121314 |
- import sys
- sys.stderr.write("""
- Unsupported installation method: python setup.py
- Please use `python -m pip install .` instead.
- """
- )
- #sys.exit(1)
- from setuptools import setup
- setup(
- name="redmail",
- install_requires = ["jinja2"],
- )
|