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:
|
2023-07-12 04:42:17 -05:00
|
|
|
license = f.read()
|
2019-06-03 07:33:16 -05:00
|
|
|
|
2024-12-16 02:29:52 -06: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'],
|
2023-07-12 04:42:17 -05:00
|
|
|
package_data={'rips': ['py.typed', '*.py', 'generated/*.py', 'PythonExamples/*.py', 'tests/*.py']},
|
2024-10-16 02:27:09 -05:00
|
|
|
install_requires=['grpcio', 'protobuf', 'wheel', 'typing_extensions'],
|
2023-08-23 02:27:24 -05:00
|
|
|
python_requires='>=3.8',
|
2023-07-12 04:42:17 -05:00
|
|
|
)
|