Skip to content
New issue

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

Change setup.py to same as requirements.txt #25

Closed
hksonngan opened this issue Jul 14, 2021 · 3 comments
Closed

Change setup.py to same as requirements.txt #25

hksonngan opened this issue Jul 14, 2021 · 3 comments

Comments

@hksonngan
Copy link

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,
)
`

thomaskuestner added a commit that referenced this issue Jul 14, 2021
@thomaskuestner
Copy link
Member

Thanks @hksonngan for the update. I merged this into master.

@thomaskuestner
Copy link
Member

@all-contributors please add @hksonngan for bug

@allcontributors
Copy link
Contributor

@thomaskuestner

I've put up a pull request to add @hksonngan! 🎉

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants