-
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.
pre-commits and symmetry layer (#126)
* Add pre-commits to repository * Add warning to symmetry layer * Add test for symmetry layer * Delete unused import * Add another symmetry test * Delete old symmetry function and rename * Update url * Update README.md
- Loading branch information
Showing
6 changed files
with
53 additions
and
41 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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
repos: | ||
- repo: https://github.com/psf/black | ||
rev: 22.6.0 | ||
hooks: | ||
- id: black-jupyter | ||
- repo: https://github.com/PyCQA/flake8 | ||
rev: 4.0.1 | ||
hooks: | ||
- id: flake8 | ||
args: [--max-line-length=88, "--extend-ignore=E203"] |
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 |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
name="radionets", | ||
version="0.1.14", | ||
description="Imaging radio interferometric data with neural networks", | ||
url="https://github.com/Kevin2/radionets", | ||
url="https://github.com/radionets-project/radionets", | ||
author="Kevin Schmidt, Felix Geyer", | ||
author_email="[email protected], [email protected]", | ||
license="MIT", | ||
|
@@ -25,14 +25,16 @@ | |
"pytest", | ||
"pytest-cov", | ||
"pytest-order", | ||
"comet_ml" | ||
"comet_ml", | ||
"pre-commit", | ||
], | ||
setup_requires=["pytest-runner"], | ||
tests_require=["pytest"], | ||
zip_safe=False, | ||
entry_points={ | ||
"console_scripts": [ | ||
"radionets_simulations = radionets.simulations.scripts.simulate_images:main", | ||
"radionets_simulations = radionets.simulations.scripts.simulate_images\ | ||
:main", | ||
"radionets_training = radionets.dl_training.scripts.start_training:main", | ||
"radionets_evaluation = radionets.evaluation.scripts.start_evaluation:main", | ||
], | ||
|
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