We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi Thomas, Current setup.py is difference with requirements.txt I think should change code as from setuptools import setup, find_packages
` import os
with open('./requirements.txt') as f: requirements = f.read().splitlines()
setup( name='med_segmentation', version='1.0.0', author='MIDAS and kSpace Astronauts', author_email='thomas.kuestner@med.uni-tuebingen.de', description='Medical Image Segmentation', long_description=open(os.path.join(os.path.dirname(file), 'README.md')).read(), package_dir={'med_seg': 'med_seg'}, packages=['med_seg'], license='public', keywords='None', classifiers=[ 'Natural Language :: English', 'Programming Language :: Python :: 3 :: Only' ], install_requires==requirements, ) `
The text was updated successfully, but these errors were encountered:
update setup #25
c8ed774
Thanks @hksonngan for the update. I merged this into master.
Sorry, something went wrong.
@all-contributors please add @hksonngan for bug
@thomaskuestner
I've put up a pull request to add @hksonngan! 🎉
No branches or pull requests
Hi Thomas,
Current setup.py is difference with requirements.txt
I think should change code as
from setuptools import setup, find_packages
`
import os
with open('./requirements.txt') as f:
requirements = f.read().splitlines()
setup(
name='med_segmentation',
version='1.0.0',
author='MIDAS and kSpace Astronauts',
author_email='thomas.kuestner@med.uni-tuebingen.de',
description='Medical Image Segmentation',
long_description=open(os.path.join(os.path.dirname(file), 'README.md')).read(),
package_dir={'med_seg': 'med_seg'},
packages=['med_seg'],
license='public',
keywords='None',
classifiers=[
'Natural Language :: English',
'Programming Language :: Python :: 3 :: Only'
],
install_requires==requirements,
)
`
The text was updated successfully, but these errors were encountered: