initial upload

This commit is contained in:
2025-12-17 11:00:57 +08:00
parent 2bc7b24a71
commit a09a73537f
4614 changed files with 3478433 additions and 2 deletions

27
PyLaGriT/setup.py Executable file
View File

@@ -0,0 +1,27 @@
"""
Build script for PyLaGriT
"""
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import os
setup(
name="pylagrit",
version="1.0.1",
description="Python interface for LaGriT",
author="Dylan R. Harp",
author_email="dharp@lanl.gov",
url="lagrit.lanl.gov",
license="LGPL",
install_requires=[
"pexpect>=4.6.0",
"numpy",
],
packages=[
"pylagrit",
],
)