Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
*.egg-info
*/__pycache__
*.log
build/
.hypothesis/
18 changes: 14 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,6 @@ The following tutorials are avaiable as Google Colab notebooks and hence do not
pip install gmx-top4py
```

### From TestPyPI
```bash
pip install --index-url https://test.pypi.org/simple --extra-index-url https://pypi.org/simple gmx-top4py
```
### From source via uv
Clone repository and move into
```bash
Expand All @@ -45,3 +41,17 @@ Verify install by running the tests
```bash
pytest tests
```

### From source via conda/pip
Clone repository and move into
```bash
git clone git@github.com:graeter-group/gmx-top4py.git
cd gmx-top4py
conda create -n gmx-top4py python -y
conda activate gmx-top4py
pip install -e '.[dev]' # install with dev dependencies
```
Verify install by running the tests
```bash
pytest tests
```
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name = "gmx-top4py"
version = "0.1.1"
description = "A Python library to parse GROMACS topology files and alter associated force fields parameters."
license-files = ["LICEN[CS]E*"]
authors = [{ name = "graeter-group", email = "ak-graeter@mpip-mainz.mpg.de"}]
authors = [{ name = "graeter-group"}]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
Expand Down