-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DOC: Follow repository naming convention.
Follow remote module repository naming convention: add the `ITK` prefix to the **project name**, and keep the prefix out of the **module name**. Specifically: - Fix the **module name** in the main `CMakeLists.txt` file. - Fix the **module name** in the wrapping `CMakeLists.txt` file. - Fix the **module name** in the `itk-module.cmake` file. - Fix the **project name** in the `setup` section of the `setup.py` file. - Change the **project name** in the `config.yml` Circle CI `yml` file. - Fix the **module name** for the `\ingroup` Doxygen documentation keyword. - Take advantage of the change to set the URL to the repository site in `setup.py`. - Take advantage of the change to add keywords describing the module to `setup.py`.
- Loading branch information
1 parent
e00db6b
commit e01cf94
Showing
8 changed files
with
27 additions
and
27 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
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 |
---|---|---|
|
@@ -12,15 +12,15 @@ | |
sys.exit(1) | ||
|
||
setup( | ||
name='dvmeshnoise', | ||
name='itk-meshnoise', | ||
version='0.0.1', | ||
author='Davis Vigneault', | ||
author_email='[email protected]', | ||
packages=['itk'], | ||
package_dir={'itk': 'itk'}, | ||
download_url=r'https://github.com/InsightSoftwareConsortium/DVMeshNoise', | ||
download_url=r'https://github.com/InsightSoftwareConsortium/ITKMeshNoise', | ||
description=r'Classes to perturb mesh objects with Gaussian noise', | ||
long_description='DVMeshNoise provides classes to perturb mesh objects' | ||
long_description='ITKMeshNoise provides classes to perturb mesh objects' | ||
'with Gaussian noise.\n' | ||
'Please refer to:' | ||
'Vigneault D.,' | ||
|
@@ -46,8 +46,8 @@ | |
"Operating System :: MacOS" | ||
], | ||
license='Apache', | ||
keywords='ITK InsightToolkit', | ||
url=r'https://itk.org/', | ||
keywords='ITK InsightToolkit mesh noise', | ||
url=r'https://github.com/InsightSoftwareConsortium/ITKMeshNoise', | ||
install_requires=[ | ||
r'itk' | ||
] | ||
|
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