Skip to content

Commit

Permalink
Merge pull request #102 from HPC-SimTools/update_for_package
Browse files Browse the repository at this point in the history
Update package info
  • Loading branch information
rosswhitfield authored Jan 7, 2021
2 parents dc160e6 + dd5d9a5 commit 9b88e23
Showing 1 changed file with 30 additions and 1 deletion.
31 changes: 30 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,39 @@
from setuptools import setup, find_packages
import versioneer

long_description = """# Integrated Plasma Simulator (IPS) Framework
The IPS was originally developed for the SWIM project and is designed
for coupling plasma physics codes to simulate the interactions of
various heating methods on plasmas in a tokamak. The physics goal of
the project is to better understand how the heating changes the
properties of the plasma and how these heating methods can be used to
improve the stability of plasmas for fusion energy production.
The IPS framework is thus designed to couple standalone codes flexibly
and easily using python wrappers and file-based data coupling. These
activities are not inherently plasma physics related and the IPS
framework can be considered a general code coupling framework. The
framework provides services to manage:
- the orchestration of the simulation through component invocation,
task launch and asynchronous event notification mechanisms
- configuration of complex simulations using familiar syntax
- file communication mechanisms for shared and internal (to a
component) data, as well as checkpoint and restart capabilities
The framework performs the task, configuration, file and resource
management, along with the event service, to provide these features.
"""

setup(
name="ipsframework",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
url="https://github.com/HPC-SimTools/IPS-framework",
url="https://ips-framework.readthedocs.io",
description="Integrated Plasma Simulator (IPS) Framework",
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(),
entry_points={
'console_scripts': [
Expand All @@ -18,4 +46,5 @@
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
],
python_requires='>=3.6'
)

0 comments on commit 9b88e23

Please sign in to comment.