|
6 | 6 | # Format expected by setup.py and doc/source/conf.py: string of form "X.Y.Z" |
7 | 7 | _version_major = 0 |
8 | 8 | _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 |
10 | 10 | # _version_extra = 'dev' |
11 | 11 | _version_extra = '' # Uncomment this for full releases |
12 | 12 |
|
|
35 | 35 | AFQ-browser is a software library for visualization of results from |
36 | 36 | automated fiber quantification of human brain tractography. |
37 | 37 |
|
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 |
39 | 39 | and produces a browser-based visualization of the data. Command-line tools |
40 | 40 | allow users to create these visualizations from their data and upload them to |
41 | 41 | share with others as a website. |
42 | 42 |
|
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 |
46 | 45 |
|
47 | 46 | """ |
48 | 47 |
|
|
66 | 65 | pjoin('site', 'client', 'data', '*'), |
67 | 66 | pjoin('site', 'client', 'css', '*'), |
68 | 67 | 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 | + |
70 | 73 | SCRIPTS = [op.join('bin', op.split(f)[-1]) for f in glob.glob('bin/*')] |
0 commit comments