Skip to content

Commit 157d615

Browse files
committed
Small fixes for a V0.2.1
1 parent 785ba58 commit 157d615

File tree

2 files changed

+9
-13
lines changed

2 files changed

+9
-13
lines changed

afqbrowser/version.py

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# Format expected by setup.py and doc/source/conf.py: string of form "X.Y.Z"
77
_version_major = 0
88
_version_minor = 2
9-
_version_micro = '' # use '' for first of series, number for 1 and above
9+
_version_micro = 1 # use '' for first of series, number for 1 and above
1010
# _version_extra = 'dev'
1111
_version_extra = '' # Uncomment this for full releases
1212

@@ -35,14 +35,13 @@
3535
AFQ-browser is a software library for visualization of results from
3636
automated fiber quantification of human brain tractography.
3737
38-
The software takes as input the results of analysis from the <> software
38+
The software takes as input the results of analysis from the ``AFQ`` software
3939
and produces a browser-based visualization of the data. Command-line tools
4040
allow users to create these visualizations from their data and upload them to
4141
share with others as a website.
4242
43-
For instructions on installation and use, visit the documentation_.
44-
45-
.. _README: https://yeatmanlab.github.io/AFQ-Browser
43+
For instructions on installation and use, visit the documentation:
44+
https://yeatmanlab.github.io/AFQ-Browser
4645
4746
"""
4847

@@ -66,5 +65,9 @@
6665
pjoin('site', 'client', 'data', '*'),
6766
pjoin('site', 'client', 'css', '*'),
6867
pjoin('site', 'client', 'js', '*'),
69-
pjoin('site', 'client', 'js', 'third-party', '*')]}
68+
pjoin('site', 'client', 'js',
69+
'third-party', '*')]}
70+
71+
REQUIRES = ["numpy", "pandas", "scipy", "PyGithub", "GitPython"]
72+
7073
SCRIPTS = [op.join('bin', op.split(f)[-1]) for f in glob.glob('bin/*')]

setup.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,6 @@
77
with open(ver_file) as f:
88
exec(f.read())
99

10-
REQUIRES = []
11-
with open('requirements.txt') as f:
12-
l = f.readline()[:-1].split("=")[0].split(">")[0]
13-
while l:
14-
REQUIRES.append(l)
15-
l = f.readline()[:-1].split("=")[0].split(">")[0]
16-
1710

1811
opts = dict(name=NAME,
1912
maintainer=MAINTAINER,

0 commit comments

Comments
 (0)