initial upload
This commit is contained in:
27
PyLaGriT/setup.py
Executable file
27
PyLaGriT/setup.py
Executable 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",
|
||||
],
|
||||
)
|
||||
Reference in New Issue
Block a user