2019-06-03 07:33:16 -05:00
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
|
|
|
with open('README.md') as f:
|
|
|
|
readme = f.read()
|
|
|
|
|
|
|
|
with open('LICENSE') as f:
|
|
|
|
license = f.read()
|
|
|
|
|
2019-09-03 04:41:30 -05:00
|
|
|
RIPS_DIST_VERSION = '1'
|
2019-06-03 07:33:16 -05:00
|
|
|
|
|
|
|
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-09-03 04:41:30 -05:00
|
|
|
packages=['rips'],
|
2020-04-19 14:37:09 -05:00
|
|
|
package_data={'rips': ['*.py', 'generated/*.py', 'PythonExamples/*.py', 'tests/*.py']},
|
2021-06-14 04:37:20 -05:00
|
|
|
install_requires=['grpcio>=1.20.0', 'protobuf', 'wheel']
|
2019-06-03 07:33:16 -05:00
|
|
|
)
|