irpf90/pip/setup.py

20 lines
778 B
Python

from distutils.core import setup
import os
os.path.append("../src")
import version
setup(
name = 'irpf90',
packages = ['irpf90_libs'], # this must be the same as the name above
version = version.version,
description = 'IRPF90 is a Fortran90 preprocessor written in Python for programming using the Implicit Reference to Parameters (IRP) method. It simplifies the development of large fortran codes in the field of scientific high performance computing.',
author = 'Anthony Scemama',
author_email = 'scemama@irsamc.ups-tlse.fr',
url = 'http://irpf90.ups-tlse.fr',
download_url = 'https://gitlab.com/scemama/irpf90/archive/v1.7.4.tar.gz',
keywords = ['programming', 'fortran', 'IRP'],
classifiers = [],
scripts = ["irpf90", "irpman", "irpf90_indent"],
)