10
0
mirror of https://gitlab.com/scemama/irpf90.git synced 2024-09-01 01:03:42 +02:00
irpf90/pip/setup.py

20 lines
778 B
Python
Raw Normal View History

2016-06-10 17:46:27 +02:00
from distutils.core import setup
2019-01-08 23:23:51 +01:00
import os
os.path.append("../src")
import version
2016-06-10 17:46:27 +02:00
setup(
name = 'irpf90',
packages = ['irpf90_libs'], # this must be the same as the name above
2019-01-08 23:23:51 +01:00
version = version.version,
2016-06-10 17:46:27 +02:00
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',
2019-01-08 23:23:51 +01:00
url = 'http://irpf90.ups-tlse.fr',
download_url = 'https://gitlab.com/scemama/irpf90/archive/v1.7.4.tar.gz',
keywords = ['programming', 'fortran', 'IRP'],
2016-06-10 17:46:27 +02:00
classifiers = [],
scripts = ["irpf90", "irpman", "irpf90_indent"],
)