Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,9 +206,10 @@ def get_version_tofu(path=_HERE):

# Get the long description from the README file
# Get the readme file whatever its extension (md vs rst)

_README = [
ff
for ff in os.listdir(os.path.abspath(os.path.dirname(__file__)))
Comment thread
lasofivec marked this conversation as resolved.
for ff in os.listdir(_HERE)
if len(ff) <= 10 and ff[:7] == "README."
]
assert len(_README) == 1
Expand Down