mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
21 lines
608 B
CMake
21 lines
608 B
CMake
|
from setuptools import setup, find_packages
|
||
|
|
||
|
with open('README.md') as f:
|
||
|
readme = f.read()
|
||
|
|
||
|
with open('LICENSE') as f:
|
||
|
license = f.read()
|
||
|
|
||
|
RIPS_DIST_VERSION = '1'
|
||
|
|
||
|
setup(
|
||
|
name='rips',
|
||
|
version='@RESINSIGHT_MAJOR_VERSION@.@RESINSIGHT_MINOR_VERSION@.@RESINSIGHT_PATCH_VERSION@.' + RIPS_DIST_VERSION,
|
||
|
description='Python Interface for ResInsight',
|
||
|
long_description=readme,
|
||
|
author='Ceetron Solutions',
|
||
|
author_email='info@ceetronsolutions.com',
|
||
|
url='http://www.resinsight.org',
|
||
|
license=license,
|
||
|
packages=find_packages(exclude=('tests', 'docs', '__pycache', 'examples'))
|
||
|
)
|