mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-10 23:46:00 -06:00
Python: make rips packages complete
This commit is contained in:
parent
a5670cdb0e
commit
3611d32e9e
4
ApplicationCode/GrpcInterface/Python/MANIFEST.in
Normal file
4
ApplicationCode/GrpcInterface/Python/MANIFEST.in
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
include *.txt
|
||||||
|
include *.md
|
||||||
|
include LICENSE
|
||||||
|
recursive-include rips *.py
|
@ -134,7 +134,7 @@ class Instance:
|
|||||||
connectionOk, versionOk = self.__checkVersion()
|
connectionOk, versionOk = self.__checkVersion()
|
||||||
|
|
||||||
if not connectionOk:
|
if not connectionOk:
|
||||||
if launched:
|
if self.launched:
|
||||||
raise Exception('Error: Could not connect to resinsight at ', location, ' after trying 10 times with 1 second apart')
|
raise Exception('Error: Could not connect to resinsight at ', location, ' after trying 10 times with 1 second apart')
|
||||||
else:
|
else:
|
||||||
raise Exception('Error: Could not connect to resinsight at ', location)
|
raise Exception('Error: Could not connect to resinsight at ', location)
|
||||||
|
@ -6,7 +6,7 @@ with open('README.md') as f:
|
|||||||
with open('LICENSE') as f:
|
with open('LICENSE') as f:
|
||||||
license = f.read()
|
license = f.read()
|
||||||
|
|
||||||
RIPS_DIST_VERSION = '3'
|
RIPS_DIST_VERSION = '8'
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='rips',
|
name='rips',
|
||||||
@ -17,5 +17,6 @@ setup(
|
|||||||
author_email='info@ceetronsolutions.com',
|
author_email='info@ceetronsolutions.com',
|
||||||
url='http://www.resinsight.org',
|
url='http://www.resinsight.org',
|
||||||
license=license,
|
license=license,
|
||||||
packages=find_packages(exclude=('docs', '__pycache__'))
|
include_package_data=True,
|
||||||
|
packages=['rips', 'rips.generated', 'rips.examples', 'rips.tests']
|
||||||
)
|
)
|
Loading…
Reference in New Issue
Block a user