-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
378f16b
commit 5f6d18c
Showing
3 changed files
with
46 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,32 @@ | ||
"""Install the xmsmesher package.""" | ||
import os | ||
|
||
from setuptools import setup | ||
|
||
from xms.mesher import __version__ | ||
|
||
|
||
# allow setup.py to be run from any path | ||
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir))) | ||
|
||
requires = [ | ||
'numpy', | ||
'xmscore>=3.0.5', | ||
'xmsgrid>=4.1.0', | ||
'xmsinterp>=3.1.1', | ||
] | ||
|
||
version = __version__ | ||
|
||
setup( | ||
python_requires='>=3.6', | ||
name='xmsmesher', | ||
version=version, | ||
packages=['xms.mesher', 'xms.mesher.meshing', 'xms.mesher.api'], | ||
include_package_data=True, | ||
license='BSD 2-Clause License', | ||
description='', | ||
author='Aquaveo', | ||
install_requires=requires, | ||
package_data={'': ['*.pyd', '*.so']}, | ||
) | ||
"""Install the xmsmesher package.""" | ||
import os | ||
|
||
from setuptools import setup | ||
|
||
from xms.mesher import __version__ | ||
|
||
|
||
# allow setup.py to be run from any path | ||
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir))) | ||
|
||
requires = [ | ||
'numpy', | ||
'xmscore>=4.0.0', | ||
'xmsgrid>=5.0.2', | ||
'xmsinterp>=4.0.0', | ||
] | ||
|
||
version = __version__ | ||
|
||
setup( | ||
python_requires='>=3.6', | ||
name='xmsmesher', | ||
version=version, | ||
packages=['xms.mesher', 'xms.mesher.meshing', 'xms.mesher.api'], | ||
include_package_data=True, | ||
license='BSD 2-Clause License', | ||
description='', | ||
author='Aquaveo', | ||
install_requires=requires, | ||
package_data={'': ['*.pyd', '*.so']}, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters