| from setuptools import setup, find_packages | |
| setup( | |
| name='pinn_electromagnetics', | |
| version='0.1.0', | |
| packages=find_packages(), | |
| install_requires=[ | |
| 'torch>=1.9.0', | |
| 'numpy>=1.20.0', | |
| 'matplotlib>=3.3.0', | |
| 'scikit-learn>=0.24.0' | |
| ], | |
| author='PINN Electromagnetics Team', | |
| description='A Python package for simulating electromagnetic fields using Physics-Informed Neural Networks.', | |
| long_description=open('README.md').read(), | |
| long_description_content_type='text/markdown', | |
| url='https://github.com/ayda138000/pinn_electromagnetics', | |
| classifiers=[ | |
| 'Programming Language :: Python :: 3', | |
| 'License :: OSI Approved :: MIT License', | |
| 'Operating System :: OS Independent', | |
| 'Intended Audience :: Science/Research', | |
| 'Topic :: Scientific/Engineering :: Artificial Intelligence', | |
| 'Topic :: Scientific/Engineering :: Physics' | |
| ], | |
| python_requires='>=3.7', | |
| ) | |