MCPcopy Index your code
hub / github.com/dothinking/PyAddin / load_long_description

Function load_long_description

setup.py:19–26  ·  view source on GitHub ↗
(fname)

Source from the content-addressed store, hash-verified

17
18# Load README.md for long description
19def load_long_description(fname):
20 if os.path.exists(fname):
21 with open(fname, 'r') as f:
22 long_description = f.read()
23 else:
24 long_description = DESCRIPTION
25
26 return long_description
27
28def load_requirements(fname):
29 try:

Callers 1

setup.pyFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected