Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
fslpy
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Analyze
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Evan Edmond
fslpy
Commits
b81f222f
Commit
b81f222f
authored
7 years ago
by
Paul McCarthy
Browse files
Options
Downloads
Patches
Plain Diff
README.md moved to README.rst, because pypi doesn't support md. Xvfb install
tweak
parent
066be4a6
No related branches found
No related tags found
No related merge requests found
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
.gitlab-ci.yml
+1
-1
1 addition, 1 deletion
.gitlab-ci.yml
MANIFEST.in
+0
-1
0 additions, 1 deletion
MANIFEST.in
README.md
+0
-42
0 additions, 42 deletions
README.md
README.rst
+43
-0
43 additions, 0 deletions
README.rst
setup.py
+1
-1
1 addition, 1 deletion
setup.py
with
45 additions
and
45 deletions
.gitlab-ci.yml
+
1
−
1
View file @
b81f222f
...
...
@@ -212,7 +212,7 @@ variables:
# Linux builds for wxPython are currently
# not on pypi, but are available at this
# url.
-
apt-get install xvfb
-
apt-get install
-y
xvfb
-
pip install -f https://wxpython.org/Phoenix/release-extras/linux/gtk3/debian-8/ wxpython
# All other deps can be installed as normal
...
...
This diff is collapsed.
Click to expand it.
MANIFEST.in
+
0
−
1
View file @
b81f222f
include LICENSE
include COPYRIGHT
include README.md
include requirements.txt
include pytest.ini
recursive-include doc *
...
...
This diff is collapsed.
Click to expand it.
README.md
deleted
100644 → 0
+
0
−
42
View file @
066be4a6
fslpy
=====
The
`fslpy`
project is a
[
FSL
](
http://fsl.fmrib.ox.ac.uk/fsl/fslwiki/
)
programming library written in Python. It is used by
[
FSLeyes
](
https://git.fmrib.ox.ac.uk/paulmc/fsleyes/
)
.
Dependencies
------------
All of the dependencies of
`fslpy`
are listed in the
[
requirements.txt
](
requirements.txt
)
file. Some
`fslpy`
modules require
[
wxPython
](
http://www.wxpython.org
)
3.0.2.0.
Documentation
-------------
`fslpy`
is documented using
[
sphinx
](
http://http://sphinx-doc.org/
)
. You can
build the API documentation by running:
python setup.py doc
The HTML documentation will be generated and saved in the
`doc/html/`
directory.
If you are interested in contributing to
`fslpy`
, check out the
[
contributing
guide
](
doc/contributing.rst
)
.
Tests
-----
Run the test suite via:
python setup.py test
A test report will be generated at
`report.html`
, and a code coverage report
will be generated in
`htmlcov/`
.
This diff is collapsed.
Click to expand it.
README.rst
0 → 100644
+
43
−
0
View file @
b81f222f
fslpy
=====
The ``fslpy`` project is a `FSL <http://fsl.fmrib.ox.ac.uk/fsl/fslwiki/>`_
programming library written in Python. It is used by `FSLeyes
<https://git.fmrib.ox.ac.uk/paulmc/fsleyes/>`_.
Dependencies
------------
All of the dependencies of ``fslpy`` are listed in the `requirements.txt
<requirements.txt>`_ file. Some ``fslpy`` modules require `wxPython
<http://www.wxpython.org>`_ 3.0.2.0 or higher.
Documentation
-------------
``fslpy`` is documented using `sphinx <http://http://sphinx-doc.org/>`_. You
can build the API documentation by running::
python setup.py doc
The HTML documentation will be generated and saved in the ``doc/html/``
directory.
If you are interested in contributing to ``fslpy``, check out the
`contributing guide <doc/contributing.rst>`_.
Tests
-----
Run the test suite via::
python setup.py test
A test report will be generated at ``report.html``, and a code coverage report
will be generated in ``htmlcov/``.
This diff is collapsed.
Click to expand it.
setup.py
+
1
−
1
View file @
b81f222f
...
...
@@ -37,7 +37,7 @@ with open(op.join(basedir, "fsl", "version.py")) as f:
break
version
=
version
[
'
__version__
'
]
with
open
(
op
.
join
(
basedir
,
'
README.
md
'
),
'
rt
'
)
as
f
:
with
open
(
op
.
join
(
basedir
,
'
README.
rst
'
),
'
rt
'
)
as
f
:
readme
=
f
.
read
()
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment