File size: 965 Bytes
ad8eda7
 
 
 
 
 
 
 
 
 
 
a27be1a
ad8eda7
 
 
 
 
daed99e
ad8eda7
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29

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',
)