mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-20 11:48:35 -06:00
* First PDF creation support * Reimplement info box * Set title and make overlay frame margins more unified * Remove a style sheet that was never meant to be applied to Project Tree * Update RiuDraggableOverlayFrame when changing content * Default page layout in Preferences * undo removal of elision * Remove friend class assignment in cafCategoryMapper * the required methods have been made public * Fix up after review * Remove spurious const on by-value return * Fix compile errors on Linux * Fix size adjustment of legends with plot resizing
23 lines
683 B
CMake
23 lines
683 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=['rips'],
|
|
package_data={'rips': ['*.py', 'generated/*.py', 'PythonExamples/*.py', 'tests/*.py']}
|
|
install_requires=['grpcio>=1.20.0']
|
|
) |