brotherton-erpnext/setup.py
Aditya Hase 7053bb9bb8
fix: Maintain backward compatibility with older bench versions (#31542)
Older versions of bench depend on `name` in setup.py

Setting it to `frappe` causes some weird behavior like moving `apps/erpnext` to `apps/frappe`
2022-07-06 17:32:21 +05:30

7 lines
107 B
Python

# TODO: Remove this file when v15.0.0 is released
from setuptools import setup
name = "erpnext"
setup()