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
FSL
fslgui
Commits
901ad231
Commit
901ad231
authored
Mar 20, 2020
by
Taylor Hanayik
Browse files
redo scripts for setup.py, remove conda stuff
parent
3a2a0e5d
Changes
6
Hide whitespace changes
Inline
Side-by-side
README.md
View file @
901ad231
...
...
@@ -2,5 +2,17 @@
The FSL GUI project contains all of the wxPython graphical user interfaces for FSL programs.
# For developers
create a python virtual environment
`cd /path/to/virtual/envs`
`python3 -m venv fslgui`
`source /path/to/virtual/envs/fslgui/bin/activate`
install the requirements
`pip3 install -r requirements.txt`
build.sh
deleted
100755 → 0
View file @
3a2a0e5d
#!/bin/bash
conda build
-c
conda-forge condaRecipes
\ No newline at end of file
devinstall
0 → 100755
View file @
901ad231
#!/bin/bash -e
pip3
install
-e
.
fsl/gui/scripts/Bet_gui
→
fsl/gui/scripts/Bet_gui
.py
100755 → 100644
View file @
901ad231
File moved
fsl/gui/scripts/Flirt_gui
→
fsl/gui/scripts/Flirt_gui
.py
100755 → 100644
View file @
901ad231
File moved
setup.py
View file @
901ad231
...
...
@@ -2,16 +2,22 @@ from setuptools import setup, find_packages
from
os
import
listdir
from
os.path
import
isfile
,
join
# list scripts
scripts
=
[
join
(
'./fsl/gui/scripts'
,
f
)
for
f
in
listdir
(
'./fsl/gui/scripts'
)
if
isfile
(
join
(
'./fsl/gui/scripts'
,
f
))]
with
open
(
'requirements.txt'
,
'rt'
)
as
f
:
install_requires
=
[
l
.
strip
()
for
l
in
f
.
readlines
()]
setup
(
name
=
'fslgui'
,
version
=
'0.0.2'
,
description
=
'fslgui'
,
author
=
'Taylor Hanayik'
,
install_requires
=
install_requires
,
scripts
=
scripts
,
packages
=
find_packages
(),
include_package_data
=
True
)
setup
(
name
=
'fslgui'
,
version
=
'0.0.2.dev1'
,
description
=
'fslgui'
,
author
=
'Taylor Hanayik'
,
install_requires
=
install_requires
,
packages
=
find_packages
(),
include_package_data
=
True
,
entry_points
=
{
'console_scripts'
:
[
'Bet_gui = fsl.gui.scripts.Bet_gui:main'
,
'Flirt_gui = fsl.gui.scripts.Flirt_gui:main'
]
}
)
Write
Preview
Supports
Markdown
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