You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
358 B
13 lines
358 B
import os, sys
|
|
from pkg_resources import load_entry_point
|
|
|
|
if __name__ == '__main__':
|
|
dist = os.environ.get("PYCHARM_EP_DIST")
|
|
name = os.environ.get("PYCHARM_EP_NAME")
|
|
if dist == "ipython" and name == "ipython":
|
|
from IPython import start_ipython
|
|
f = start_ipython
|
|
else:
|
|
f = load_entry_point(dist, "console_scripts", name)
|
|
sys.exit(f())
|