ResInsight/ApplicationCode/GrpcInterface/Python/setup.py.cmake

22 lines
628 B
CMake
Raw Normal View History

from setuptools import setup, find_packages
with open('README.md') as f:
readme = f.read()
with open('LICENSE') as f:
license = f.read()
2019-06-14 09:07:09 -05:00
RIPS_DIST_VERSION = '9'
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,
2019-06-12 04:27:54 -05:00
include_package_data=True,
packages=['rips', 'rips.generated', 'rips.examples', 'rips.tests']
)