-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
rename the repo to visualqc to reflect its purpose better
- Loading branch information
Showing
21 changed files
with
80 additions
and
80 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,7 @@ Types of Contributions | |
Report Bugs | ||
~~~~~~~~~~~ | ||
|
||
Report bugs at https://github.com/raamana/corticalqa/issues. | ||
Report bugs at https://github.com/raamana/visualqc/issues. | ||
|
||
If you are reporting a bug, please include: | ||
|
||
|
@@ -38,14 +38,14 @@ and "help wanted" is open to whoever wants to implement it. | |
Write Documentation | ||
~~~~~~~~~~~~~~~~~~~ | ||
|
||
corticalqa could always use more documentation, whether as part of the | ||
official corticalqa docs, in docstrings, or even on the web in blog posts, | ||
visualqc could always use more documentation, whether as part of the | ||
official visualqc docs, in docstrings, or even on the web in blog posts, | ||
articles, and such. | ||
|
||
Submit Feedback | ||
~~~~~~~~~~~~~~~ | ||
|
||
The best way to send feedback is to file an issue at https://github.com/raamana/corticalqa/issues. | ||
The best way to send feedback is to file an issue at https://github.com/raamana/visualqc/issues. | ||
|
||
If you are proposing a feature: | ||
|
||
|
@@ -57,17 +57,17 @@ If you are proposing a feature: | |
Get Started! | ||
------------ | ||
|
||
Ready to contribute? Here's how to set up `corticalqa` for local development. | ||
Ready to contribute? Here's how to set up `visualqc` for local development. | ||
|
||
1. Fork the `corticalqa` repo on GitHub. | ||
1. Fork the `visualqc` repo on GitHub. | ||
2. Clone your fork locally:: | ||
|
||
$ git clone [email protected]:your_name_here/corticalqa.git | ||
$ git clone [email protected]:your_name_here/visualqc.git | ||
|
||
3. Install your local copy into a virtualenv. Assuming you have virtualenvwrapper installed, this is how you set up your fork for local development:: | ||
|
||
$ mkvirtualenv corticalqa | ||
$ cd corticalqa/ | ||
$ mkvirtualenv visualqc | ||
$ cd visualqc/ | ||
$ python setup.py develop | ||
|
||
4. Create a branch for local development:: | ||
|
@@ -78,7 +78,7 @@ Ready to contribute? Here's how to set up `corticalqa` for local development. | |
|
||
5. When you're done making changes, check that your changes pass flake8 and the tests, including testing other Python versions with tox:: | ||
|
||
$ flake8 corticalqa tests | ||
$ flake8 visualqc tests | ||
$ python setup.py test or py.test | ||
$ tox | ||
|
||
|
@@ -102,13 +102,13 @@ Before you submit a pull request, check that it meets these guidelines: | |
your new functionality into a function with a docstring, and add the | ||
feature to the list in README.rst. | ||
3. The pull request should work for Python 2.6, 2.7, 3.3, 3.4 and 3.5, and for PyPy. Check | ||
https://travis-ci.org/raamana/corticalqa/pull_requests | ||
https://travis-ci.org/raamana/visualqc/pull_requests | ||
and make sure that the tests pass for all supported Python versions. | ||
|
||
Tips | ||
---- | ||
|
||
To run a subset of tests:: | ||
|
||
$ py.test tests.test_corticalqa | ||
$ py.test tests.test_visualqc | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
/corticalqa.rst | ||
/corticalqa.*.rst | ||
/visualqc.rst | ||
/visualqc.*.rst | ||
/modules.rst |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,6 @@ | |
Usage | ||
===== | ||
|
||
To use corticalqa in a project:: | ||
To use visualqc in a project:: | ||
|
||
import corticalqa | ||
import visualqc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,25 +29,25 @@ | |
import versioneer | ||
|
||
setup( | ||
name='corticalqa', | ||
name='visualqc', | ||
version=versioneer.get_version(), | ||
cmdclass=versioneer.get_cmdclass(), | ||
description="Tool to automate the quality assurance of pial and white matter surfaces from Freesurfer Parcellation", | ||
long_description=readme + '\n\n' + history, | ||
author="Pradeep Reddy Raamana", | ||
author_email='[email protected]', | ||
url='https://github.com/raamana/corticalqa', | ||
packages=find_packages(include=['corticalqa']), | ||
url='https://github.com/raamana/visualqc', | ||
packages=find_packages(include=['visualqc']), | ||
entry_points={ | ||
'console_scripts': [ | ||
'corticalqa=corticalqa.cli:main' | ||
'visualqc=visualqc.cli:main' | ||
] | ||
}, | ||
include_package_data=True, | ||
install_requires=requirements, | ||
license="MIT license", | ||
zip_safe=False, | ||
keywords='corticalqa', | ||
keywords='visualqc', | ||
classifiers=[ | ||
'Development Status :: 2 - Pre-Alpha', | ||
'Intended Audience :: Developers', | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
"""Unit test package for corticalqa.""" | ||
"""Unit test package for visualqc.""" |
Oops, something went wrong.