Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Vaanathi Sundaresan
truenet_tumseg
Commits
fee56c28
Commit
fee56c28
authored
May 24, 2021
by
Vaanathi Sundaresan
Browse files
setup file
parent
61d7c046
Changes
1
Hide whitespace changes
Inline
Side-by-side
setup.py
0 → 100644
View file @
fee56c28
from
setuptools
import
setup
,
find_packages
setup
(
python_requires
=
'>=3.6'
)
with
open
(
'requirements.txt'
,
'rt'
)
as
f
:
install_requires
=
[
l
.
strip
()
for
l
in
f
.
readlines
()]
setup
(
name
=
'truenet_tumseg'
,
version
=
'1.0.1'
,
description
=
'DL method for brain tumour segmentation'
,
author
=
'Vaanathi Sundaresan'
,
install_requires
=
install_requires
,
scripts
=
[
'truenet_tumseg/scripts/truenet_tumseg'
,
'truenet_tumseg/scripts/prepare_tumseg_data'
],
packages
=
find_packages
(),
include_package_data
=
True
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment