Skip to content
Open
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
1 change: 1 addition & 0 deletions .python-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3.13
16 changes: 16 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
[project]
name = "parallelization-benchmarks"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
authors = [
{ name = "Egor Marin", email = "me@marinegor.dev" }
]
requires-python = ">=3.13"
dependencies = [
"mdanalysis[analysis,parallelization]==2.10.0",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do you really want to pin it to a version? How do you then want to test recently parallelized analysis classes?

]

[build-system]
requires = ["uv_build>=0.8.15,<0.9.0"]
build-backend = "uv_build"
2 changes: 2 additions & 0 deletions src/parallelization_benchmarks/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
def hello() -> str:
return "Hello from parallelization-benchmarks!"
Loading