Skip to content

Commit

Permalink
made setup.py conform, thanks to #4
Browse files Browse the repository at this point in the history
this modification fixes a pip install problem
  • Loading branch information
benoitberanger committed Jul 16, 2022
1 parent 80d2abd commit 60d011f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
__version__ = line.split()[2].strip("'") # extract version number

with open('README.md', 'r') as f:
long_description = f.readlines()
long_description = f.read()

setuptools.setup(
name="niix2bids",
Expand All @@ -28,11 +28,11 @@
'niix2bids = niix2bids.cli:main'
]
},
classifiers=(
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GLP3",
"Operating System :: OS Independent",
),
],
keywords='MRI BIDS',
zip_safe=False
)

0 comments on commit 60d011f

Please sign in to comment.