-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into HydrogenBondAnalysis
- Loading branch information
Showing
38 changed files
with
17,317 additions
and
749 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
# Autoformat all files using `black` | ||
8f061e7da99eb78353e9392d6929673da5b352a3 | ||
91078a63c64ec9a1c2de7f72a835813b888d1c73 |
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 |
---|---|---|
@@ -0,0 +1,57 @@ | ||
name: Build and upload to PyPi | ||
|
||
on: | ||
push: | ||
tags: | ||
- "*" | ||
release: | ||
types: | ||
- published | ||
|
||
jobs: | ||
test_pypi_push: | ||
environment: | ||
name: TestPyPi | ||
url: https://test.pypi.org/p/MDPOW | ||
permissions: | ||
id-token: write | ||
if: | | ||
github.repository == 'Becksteinlab/MDPOW' && | ||
(github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')) | ||
name: "TestPyPi: Build and upload pure Python wheels" | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: testpypi_deploy | ||
uses: MDAnalysis/pypi-deployment@main | ||
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') | ||
with: | ||
test_submission: true | ||
package_name: 'MDPOW' | ||
module_name: 'mdpow' | ||
tests: false | ||
|
||
pypi_push: | ||
environment: | ||
name: PyPi | ||
url: https://pypi.org/p/MDPOW | ||
permissions: | ||
id-token: write | ||
if: | | ||
github.repository == 'Becksteinlab/MDPOW' && | ||
(github.event_name == 'release' && github.event.action == 'published') | ||
name: "PyPi: Build and upload pure Python wheels" | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: pypi_deploy | ||
uses: MDAnalysis/pypi-deployment@main | ||
if: github.event_name == 'release' && github.event.action == 'published' | ||
with: | ||
package_name: 'MDPOW' | ||
module_name: 'mdpow' | ||
tests: false |
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
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,5 +1,10 @@ | ||
{ | ||
"[python]": { | ||
"editor.formatOnSave": true | ||
} | ||
}, | ||
"python.testing.pytestArgs": [ | ||
"mdpow" | ||
], | ||
"python.testing.unittestEnabled": false, | ||
"python.testing.pytestEnabled": true | ||
} |
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
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,7 +1,7 @@ | ||
include setup.py setup.cfg COPYING INSTALL README.rst AUTHORS CHANGES | ||
recursive-include doc *.html *.css *.js *.txt *.inv *.png | ||
include setup.py setup.cfg COPYING INSTALL.rst README.rst AUTHORS CHANGES | ||
include versioneer.py | ||
include mdpow/_version.py | ||
graft mdpow/templates/ | ||
graft mdpow/top/ | ||
graft mdpow/top/oplsaa.ff/ | ||
include versioneer.py | ||
include mdpow/_version.py | ||
graft mdpow/tests/testing_resources/ | ||
global-exclude *.py[cod] |
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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: readthedocs | ||
channels: | ||
- conda-forge | ||
dependencies: | ||
- python >=3.10 | ||
- six | ||
- numpy | ||
- scipy >=1.11.0 | ||
- matplotlib-base | ||
- pandas | ||
- scikit-learn | ||
- pyyaml | ||
- mdanalysis >=2 | ||
- numkit | ||
- gromacswrapper | ||
- alchemlyb >=2 | ||
- pymbar >=4 | ||
- rdkit | ||
- seaborn | ||
- svgutils | ||
- cairosvg | ||
- pypdf | ||
|
||
# sphinx and RTD | ||
- sphinx | ||
- sphinx_rtd_theme |
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
REMARK GENERATED BY TRJCONV | ||
TITLE This is an auto generated system | ||
REMARK THIS IS A SIMULATION BOX | ||
CRYST1 150.000 150.000 180.000 90.00 90.00 90.00 P 1 1 | ||
MODEL 1 | ||
ATOM 1 R1 BENZ 1 30.920 6.600 24.160 1.00 0.00 | ||
ATOM 2 R2 BENZ 1 28.820 5.000 23.610 1.00 0.00 | ||
ATOM 3 R3 BENZ 1 29.860 6.580 21.680 1.00 0.00 | ||
TER | ||
ENDMDL | ||
CONECT 1 2 | ||
CONECT 2 3 | ||
CONECT 1 3 |
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
include = | ||
integrator = steep | ||
dt = 0.02 | ||
nsteps = 1000 | ||
nstxout = 0 | ||
nstvout = 0 | ||
nstlog = 100 | ||
nstxtcout = 100 | ||
xtc-precision = 1000 | ||
rlist = 1.0 | ||
coulombtype = Reaction-Field | ||
rcoulomb = 1.0 | ||
epsilon_r = 15 | ||
vdw-type = cutoff | ||
vdw-modifier = Potential-shift-verlet | ||
rvdw = 1.0 | ||
constraints = none |
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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
include = | ||
dt = 0.005 | ||
nsteps = 25000 | ||
nstxout = 0 | ||
nstvout = 0 | ||
nstlog = 1000 | ||
nstxout-compressed = 1000 | ||
cutoff-scheme = Verlet | ||
coulombtype = Reaction-Field | ||
rcoulomb = 1.1 | ||
epsilon_r = 15 | ||
vdw-type = cutoff | ||
vdw-modifier = Potential-shift-verlet | ||
rvdw = 1.1 | ||
tcoupl = v-rescale | ||
tc-grps = System | ||
tau-t = 1.0 | ||
ref-t = 300 | ||
Pcoupl = c-rescale | ||
Pcoupltype = isotropic | ||
tau-p = 3.0 | ||
compressibility = 3e-4 | ||
ref-p = 1.0 | ||
refcoord_scaling = all |
Oops, something went wrong.