Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
SimJeg authored Sep 27, 2022
1 parent 7653c92 commit 2f7ac0c
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
from setuptools import setup, find_packages

with open('README.md', 'r', encoding='utf-8') as f:
long_description = f.read()

setup(name='balaitous',
author='Simon Jégou',
version='1.0',
description='Codebase to run the Balaitous model',
long_description='Codebase to run the Balaitous model, more information at https://github.com/SimJeg/balaitous/blob/master/README.md',
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(),
license ='MIT',
install_requires=[
Expand All @@ -13,6 +17,6 @@
'scikit-image',
'torch',
'torchvision',
'lungmask @ git+https://[email protected]/JoHof/[email protected]',
'lungmask',
],
entry_points ={'console_scripts': ['balaitous = balaitous.cli:cli']})

0 comments on commit 2f7ac0c

Please sign in to comment.