Skip to content

Commit

Permalink
update setup #25
Browse files Browse the repository at this point in the history
  • Loading branch information
thomaskuestner committed Jul 14, 2021
1 parent fe41da8 commit c8ed774
Showing 1 changed file with 20 additions and 31 deletions.
51 changes: 20 additions & 31 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,36 +1,25 @@
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=[
'numpy',
'pydicom',
'dicom2nifti',
'nibabel',
'matplotlib',
'pyyaml',
'pynrrd',
'pandas',
'keras',
'tensorflow',
'sklearn',
'scikit-image',
'opencv-python'
],
)
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,
)

0 comments on commit c8ed774

Please sign in to comment.