Skip to content

Commit

Permalink
Merge pull request #4 from cemsbv/3-add-plxscripting-files-according-…
Browse files Browse the repository at this point in the history
…to-version-104

Add plxscripting files according to version 1.0.4
  • Loading branch information
PabloVasconez committed Nov 8, 2023
2 parents f2438f5 + 29edf46 commit dc23514
Show file tree
Hide file tree
Showing 30 changed files with 1,693 additions and 1,256 deletions.
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ the PLAXIS program you need to use.
| :------------------------------------: | :----------------: |
| PLAXIS 2D CONNECT Edition V22 Update 2 | 1.0.2 |

| PLAXIS 3D Versions | Repository Version |
| :----------------: | :----------------: |
| PLAXIS 3D 2023.2 | 1.0.4 |

# Contribution

Expand Down Expand Up @@ -80,11 +83,11 @@ pip install pip-tools
Generate requirements.txt file with:

```bash
pip-compile --extra=test --extra=lint --extra=docs --output-file=requirements.txt pyproject.toml
pip-compile --extra=test --output-file=requirements.txt pyproject.toml
```

Update the requirements within the defined ranges with:

```bash
pip-compile --upgrade --extra=test --extra=lint --extra=docs --output-file=requirements.txt pyproject.toml
pip-compile --upgrade --extra=test --output-file=requirements.txt pyproject.toml
```
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "plxscripting"
version = "1.0.2"
version = "1.0.4"
description = "Python files required to interact with PLAXIS API"
requires-python = ">=3.9"
dependencies = [
Expand Down
28 changes: 24 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# This file is autogenerated by pip-compile with Python 3.9
# by the following command:
#
# pip-compile --extra=docs --extra=lint --extra=test --output-file=requirements.txt pyproject.toml
# pip-compile --extra=test --output-file=requirements.txt pyproject.toml
#
asttokens==2.4.1
# via stack-data
Expand All @@ -12,18 +12,28 @@ charset-normalizer==3.3.2
# via requests
comm==0.2.0
# via ipykernel
coverage==6.5.0
# via coveralls
coveralls==3.3.1
# via plxscripting (pyproject.toml)
debugpy==1.8.0
# via ipykernel
decorator==5.1.1
# via ipython
docopt==0.6.2
# via coveralls
exceptiongroup==1.1.3
# via ipython
# via
# ipython
# pytest
executing==2.0.1
# via stack-data
idna==3.4
# via requests
importlib-metadata==6.8.0
# via jupyter-client
iniconfig==2.0.0
# via pytest
ipykernel==6.26.0
# via plxscripting (pyproject.toml)
ipython==8.17.2
Expand All @@ -43,13 +53,17 @@ matplotlib-inline==0.1.6
nest-asyncio==1.5.8
# via ipykernel
packaging==23.2
# via ipykernel
# via
# ipykernel
# pytest
parso==0.8.3
# via jedi
pexpect==4.8.0
# via ipython
platformdirs==3.11.0
# via jupyter-core
pluggy==1.3.0
# via pytest
prompt-toolkit==3.0.39
# via ipython
psutil==5.9.6
Expand All @@ -64,20 +78,26 @@ pycryptodome==3.19.0
# via plxscripting (pyproject.toml)
pygments==2.16.1
# via ipython
pytest==7.4.3
# via plxscripting (pyproject.toml)
python-dateutil==2.8.2
# via jupyter-client
pyzmq==25.1.1
# via
# ipykernel
# jupyter-client
requests==2.31.0
# via plxscripting (pyproject.toml)
# via
# coveralls
# plxscripting (pyproject.toml)
six==1.16.0
# via
# asttokens
# python-dateutil
stack-data==0.6.3
# via ipython
tomli==2.0.1
# via pytest
tornado==6.3.3
# via
# ipykernel
Expand Down
10 changes: 9 additions & 1 deletion src/plxscripting/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# Copyright (c) Plaxis bv. All rights reserved.
from .__version__ import (
__title__, __description__, __url__, __version__, __license__, __author__, __author_email__, __copyright__)
__title__,
__description__,
__url__,
__version__,
__license__,
__author__,
__author_email__,
__copyright__,
)
16 changes: 8 additions & 8 deletions src/plxscripting/__version__.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Copyright (c) Plaxis bv. All rights reserved.
__title__ = 'plxscripting'
__description__ = 'Python wrapper for the PLAXIS Remote Scripting server API'
__url__ = 'https://requests.readthedocs.io'
__version__ = '1.0.2'
__author__ = 'Plaxis bv'
__author_email__ = 'prg-pypi-deploy@bentley.com'
__license__ = 'Plaxis Public License 1.0'
__copyright__ = 'Copyright (c) Plaxis bv'
__title__ = "plxscripting"
__description__ = "Python wrapper for the PLAXIS Remote Scripting server API"
__url__ = "https://www.bentley.com"
__version__ = "1.0.4"
__author__ = "Plaxis bv"
__author_email__ = "prg-pypi-deploy@bentley.com"
__license__ = "Plaxis Public License 1.0"
__copyright__ = "Copyright (c) Plaxis bv"
Loading

0 comments on commit dc23514

Please sign in to comment.