Skip to content

Commit 3d1dfdf

Browse files
committed
Remove unneeded README filter in setup
1 parent 29b5227 commit 3d1dfdf

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

setup.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@
99
DESCRIPTION = "Non-uniform fast Fourier transforms on the GPU"
1010

1111
with open('python/cufinufft/README.md', encoding='utf8') as fh:
12-
README = fh.read().split('\n')
13-
LONG_DESCRIPTION = '\n'.join([x for x in README if not x[:3] == '[!['])
12+
LONG_DESCRIPTION = fh.read()
1413

1514
# Parse the requirements
1615
with open(os.path.join('python/cufinufft', 'requirements.txt'), 'r') as fh:

0 commit comments

Comments
 (0)