fdfd_tools/setup.py

45 lines
1.2 KiB
Python
Raw Normal View History

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 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-09-27 20:44:31 -07:00
with open('meanas/VERSION', 'r') as f:
version = f.read().strip()
2019-08-04 13:48:41 -07:00
setup(name='meanas',
2019-09-27 20:44:31 -07:00
version=version,
2019-08-04 13:48:41 -07:00
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-10-08 23:59:22 -07:00
url='https://mpxd.net/code/jan/meanas',
2016-05-30 22:30:45 -07:00
packages=find_packages(),
2019-09-27 20:44:31 -07:00
package_data={
'meanas': ['VERSION']
},
2016-05-30 22:30:45 -07:00
install_requires=[
'numpy',
'scipy',
],
extras_require={
2019-08-04 03:06:32 -07:00
'test': [
'pytest',
'dataclasses',
],
2019-10-08 23:56:49 -07:00
'examples': [
'gridlock',
],
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
)