Skip to content
Snippets Groups Projects
Commit 703854ca authored by Stefan Possanner's avatar Stefan Possanner
Browse files

Removed old setup files

parent be54af0d
Branches
Tags
1 merge request!12Version 1.1.1
Pipeline #164494 failed
[metadata]
author = Tin Kei Cheng, Stefan Possanner
author_email = stefan.possanner@ipp.mpg.de
description = Converts GVEC output to Python callables
long_description = file: README.md
long_description_content_type = text/markdown
keywords = plasma, mhd, equilibrium, discrete differential forms, gvec
url = https://gitlab.mpcdf.mpg.de/spossann/gvec_to_python
project_urls =
Bug Tracker = https://gitlab.mpcdf.mpg.de/spossann/gvec_to_python/-/issues
classifiers =
Programming Language :: Python :: 3
# License :: OSI Approved :: MIT License
Operating System :: OS Independent
[options]
package_dir =
= src
packages = find:
python_requires = >=3.6
[options.packages.find]
where = src
# https://www.sphinx-doc.org/en/master/usage/advanced/setuptools.html
# [build_sphinx]
from setuptools import setup, find_packages
with open('src/gvec_to_python/version.py') as f:
exec(f.read())
setup(
name="gvec_to_python",
version=__version__, # auto-detected from struphy/version.py
packages=find_packages(),
package_data={
'gvec_to_python.testcases': [
'circ_tok/*.dat',
'circ_tok/*.ini',
'ellipstell/newBC_E1D6_M6N6/*.dat',
'ellipstell/newBC_E1D6_M6N6/*.ini',
'ellipstell/newBC_E4D6_M6N6/*.dat',
'ellipstell/newBC_E4D6_M6N6/*.ini',
'ellipstell_v2/newBC_E1D6_M6N6/*.dat',
'ellipstell_v2/newBC_E1D6_M6N6/*.ini',
'ellipstell_v2/newBC_E4D6_M6N6/*.dat',
'ellipstell_v2/newBC_E4D6_M6N6/*.ini',
'ellipstell_v2/oldBC_E40D5M6N6/*.dat',
'ellipstell_v2/oldBC_E40D5M6N6/*.ini',
],
'gvec_to_python': ['Makefile'],
},
# list of executable(s) that come with the package (if applicable)s
scripts=['bin/compile_gvec_to_python',
],
# list of package dependencies (if necessary)
install_requires=[
'matplotlib>=3.3.3',
'numpy>=1.19.5',
'pandas>=1.2.1',
'pyccel',
'scipy>=1.6.0',
'tqdm>=4.56.0',
'vtk>=9.0.3',
],
# more information, necessary for an upload to PyPI
author="Max Planck Institute for Plasma Physics",
author_email="stefan.possanner@ipp.mpg.de, florian.hindenlang@ipp.mpg.de",
description="Parse GVEC output in Python",
license="MIT",
keywords="plasma physics, fusion, numerical modeling, mhd equilibrium",
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment