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
Model registry
Operate
Environments
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
FSL
fslpy
Commits
e219b571
Commit
e219b571
authored
7 years ago
by
Paul McCarthy
Browse files
Options
Downloads
Patches
Plain Diff
development/test deps are in separate file
parent
d98e3680
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
requirements-dev.txt
+7
-0
7 additions, 0 deletions
requirements-dev.txt
setup.py
+6
-8
6 additions, 8 deletions
setup.py
with
13 additions
and
8 deletions
requirements-dev.txt
0 → 100644
+
7
−
0
View file @
e219b571
sphinx==1.6
sphinx-rtd-theme==0
mock==2
coverage==4
pytest==3
pytest-cov==2
pytest-runner==3
This diff is collapsed.
Click to expand it.
setup.py
+
6
−
8
View file @
e219b571
...
...
@@ -22,6 +22,9 @@ basedir = op.dirname(__file__)
# Dependencies are listed in requirements.txt
install_requires
=
open
(
op
.
join
(
basedir
,
'
requirements.txt
'
),
'
rt
'
).
readlines
()
# Development/test dependencies are listed in requirements-dev.txt
dev_requires
=
open
(
op
.
join
(
basedir
,
'
requirements-dev.txt
'
),
'
rt
'
).
readlines
()
packages
=
find_packages
(
exclude
=
(
'
doc
'
,
'
tests
'
,
'
dist
'
,
'
build
'
,
'
fslpy.egg-info
'
))
...
...
@@ -104,15 +107,10 @@ setup(
'
Topic :: Software Development :: Libraries :: Python Modules
'
],
packages
=
packages
,
install_requires
=
install_requires
,
setup_requires
=
[
'
pytest-runner
'
,
'
sphinx
'
,
'
sphinx-rtd-theme
'
,
'
mock
'
],
tests_require
=
[
'
mock
'
,
'
coverage
'
,
'
pytest-cov
'
,
'
pytest-html
'
,
'
pytest-runner
'
,
'
pytest
'
],
setup_requires
=
dev_requires
,
test_suite
=
'
tests
'
,
cmdclass
=
{
'
doc
'
:
doc
},
...
...
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