Skip to content

Commit

Permalink
Adapted project for version release.
Browse files Browse the repository at this point in the history
  • Loading branch information
comecattin committed Mar 8, 2024
1 parent 7050ff4 commit 2eca77f
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 1 deletion.
2 changes: 2 additions & 0 deletions README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,5 @@ JAX-MD uses `.yaml` file as input. This file contains the parameters used during
- `sigma` : $\sigma$ parameter in the Lennard-Jones potential.
- `display_energy` : Display energies of the system as a function of the time.
- `display_animation` : Display a 2D projection of the simulation.
- `printing_step` : Print the system energy every nth step.
- `writing_step` : Write the system coordinates into a trajectory file every nth step.
26 changes: 25 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ build-backend = "setuptools.build_meta"

[project]
name = "jax-md"
version = "0.0.1"
authors = [
{name = "Côme Cattin", email = "[email protected]"}
]
description = "Molecular dynamics using JAX."
readme = "README.MD"
version = "1.0.0"
dependencies = [
"numpy",
"matplotlib",
Expand All @@ -13,6 +18,25 @@ dependencies = [
"pyyaml",
"pytest",
]
license = {file = "LICENSE"}
keywords = ["md", "molecular dynamics", "jax", "MD simulation"]
classifiers = [

"Development Status :: 3 - Alpha",

"Intended Audience :: Education",
"Topic :: Scientific/Engineering :: Chemistry",

"Natural Language :: English",

"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]

[project.urls]
Repository = "https://github.com/comecattin/JAX-MD"
Issues = "https://github.com/comecattin/JAX-MD/issues"

[project.scripts]
jaxdyn = "jax_md.dynamics:main"

0 comments on commit 2eca77f

Please sign in to comment.