-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #14 from esa/Rescaled-sampling-in-frequency-domain…
…-(to-have-less-volatile-eps-vs-freq) Rescaled sampling in frequency domain (to have less volatile eps vs freq)
- Loading branch information
Showing
3 changed files
with
62 additions
and
12 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
"""A setuptools based setup module. | ||
See: | ||
https://packaging.python.org/guides/distributing-packages-using-setuptools/ | ||
https://github.com/pypa/sampleproject | ||
""" | ||
|
||
# Always prefer setuptools over distutils | ||
from setuptools import setup, find_packages | ||
|
||
setup( | ||
name="nidn", | ||
version="0.1.0", | ||
description="A package for inverse material design of nanostructures using neural networks.", | ||
long_description=open("README.md").read(), | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/esa/nidn", | ||
author="ESA Advanced Concepts Team", | ||
author_email="pablo.gomez@esa.int", | ||
install_requires=[ | ||
"dotmap>=1.3.24", | ||
"loguru>=0.5.3", | ||
"matplotlib>=3.3.3", | ||
"numpy>=1.20.0", | ||
"pandas>=1.3.1", | ||
"scipy>=1.6.0", | ||
"tqdm>=4.56.1", | ||
"torch>=1.9", | ||
], | ||
classifiers=[ | ||
"Development Status :: 3 - Alpha", | ||
"Intended Audience :: Developers", | ||
"Intended Audience :: Science/Research", | ||
"Topic :: Scientific/Engineering :: Mathematics", | ||
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)", | ||
"Programming Language :: Python :: 3.8", | ||
], | ||
packages=[ | ||
"nidn", | ||
"nidn.materials", | ||
"nidn.plots", | ||
"nidn.tests", | ||
"nidn.training", | ||
"nidn.training.losses", | ||
"nidn.training.model", | ||
"nidn.training.utils", | ||
"nidn.trcwa", | ||
"nidn.trcwa.utils", | ||
"nidn.utils", | ||
], | ||
python_requires=">=3.8, <4", | ||
project_urls={ | ||
"Source": "https://github.com/esa/nidn/", | ||
}, | ||
) |