-
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.
Generalize symmetry computation (#168)
* Add keyword for generalizing symmetry * Towncrier * Fix shape and get_ifft * Test new micromamba installation * Update towncrier * Another try * Try again * Try * remove -e * New micromamba installation and towncrier update * Update tests * Delete print * Test unc keyword * Add tests * More generalization * Add pyproject toml * Remove setup.py, add setup.cfg
- Loading branch information
Showing
8 changed files
with
106 additions
and
118 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
- add keyword for half of the image | ||
- distinguish between tensor and array in get_ifft | ||
- fix micromamba installation |
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,26 +1,3 @@ | ||
[build-system] | ||
requires = ["setuptools>=61.0"] | ||
requires = ["setuptools>=64"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "radionets" | ||
version = "0.2.0" | ||
authors = [ | ||
{ name="Kevin Schmidt", email="[email protected]" }, | ||
] | ||
description = "Imaging radio interferometric data with Neural Networks." | ||
readme = "README.md" | ||
requires-python = ">=3.7" | ||
classifiers = [ | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
"Topic :: Scientific/Engineering :: Astronomy", | ||
"Topic :: Scientific/Engineering :: Physics", | ||
"Topic :: Scientific/Engineering :: Artificial Intelligence", | ||
"Topic :: Scientific/Engineering :: Information Analysis", | ||
] | ||
|
||
[project.urls] | ||
"Homepage" = "https://github.com/pypa/sampleproject" | ||
"Bug Tracker" = "https://github.com/pypa/sampleproject/issues" |
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,5 +1,60 @@ | ||
[metadata] | ||
name = radionets | ||
version = 0.3.1 | ||
author = Kevin Schmidt, Felix Geyer | ||
author_email = [email protected], [email protected] | ||
license = MIT | ||
description = Imaging radio interferometric data with neural networks | ||
url = https://github.com/radionets-project/radionets | ||
classifiers = | ||
Development Status :: 4 - Beta | ||
Intended Audience :: Science/Research | ||
License :: OSI Approved :: MIT License | ||
Natural Language :: English | ||
Operating System :: OS Independent | ||
Programming Language :: Python | ||
Programming Language :: Python :: 3.6 | ||
Programming Language :: Python :: 3.7 | ||
Programming Language :: Python :: 3.8 | ||
Programming Language :: Python :: 3 :: Only | ||
Topic :: Scientific/Engineering :: Astronomy | ||
Topic :: Scientific/Engineering :: Physics | ||
Topic :: Scientific/Engineering :: Artificial Intelligence | ||
Topic :: Scientific/Engineering :: Information Analysis | ||
|
||
[aliases] | ||
test = pytest | ||
|
||
[options] | ||
packages = find: | ||
zip_safe = False | ||
setup_requires = pytest-runner | ||
install_requires = | ||
fastai | ||
kornia | ||
pytorch-msssim | ||
numpy | ||
astropy | ||
tqdm | ||
click | ||
numba | ||
jupyter | ||
h5py | ||
scikit-image | ||
pandas | ||
toml | ||
pytest | ||
pytest-cov | ||
pytest-order | ||
comet_ml | ||
pre-commit | ||
tests_require = pytest | ||
|
||
[tool:pytest] | ||
addopts = --verbose | ||
addopts = --verbose | ||
|
||
[options.entry_points] | ||
console_scripts = | ||
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