2019-08-04 03:06:32 -07:00
|
|
|
#!/usr/bin/env python3
|
2016-05-30 22:30:45 -07:00
|
|
|
|
|
|
|
from setuptools import setup, find_packages
|
2019-08-04 13:48:41 -07:00
|
|
|
import meanas
|
2019-08-04 03:06:32 -07:00
|
|
|
|
|
|
|
with open('README.md', 'r') as f:
|
|
|
|
long_description = f.read()
|
2016-05-30 22:30:45 -07:00
|
|
|
|
2019-08-04 13:48:41 -07:00
|
|
|
setup(name='meanas',
|
|
|
|
version=meanas.version,
|
|
|
|
description='Electromagnetic simulation tools',
|
2019-08-04 03:06:32 -07:00
|
|
|
long_description=long_description,
|
|
|
|
long_description_content_type='text/markdown',
|
2016-05-30 22:30:45 -07:00
|
|
|
author='Jan Petykiewicz',
|
|
|
|
author_email='anewusername@gmail.com',
|
2019-08-04 03:06:32 -07:00
|
|
|
url='https://mpxd.net/code/jan/fdfd_tools',
|
2016-05-30 22:30:45 -07:00
|
|
|
packages=find_packages(),
|
|
|
|
install_requires=[
|
|
|
|
'numpy',
|
|
|
|
'scipy',
|
|
|
|
],
|
|
|
|
extras_require={
|
2019-08-04 03:06:32 -07:00
|
|
|
'test': [
|
|
|
|
'pytest',
|
|
|
|
'dataclasses',
|
|
|
|
],
|
2016-05-30 22:30:45 -07:00
|
|
|
},
|
2019-08-04 03:06:32 -07:00
|
|
|
classifiers=[
|
|
|
|
'Programming Language :: Python :: 3',
|
|
|
|
'Development Status :: 4 - Beta',
|
|
|
|
'Intended Audience :: Developers',
|
|
|
|
'Intended Audience :: Science/Research',
|
|
|
|
'License :: OSI Approved :: GNU Affero General Public License v3',
|
|
|
|
'Topic :: Scientific/Engineering :: Physics',
|
|
|
|
],
|
2016-05-30 22:30:45 -07:00
|
|
|
)
|