Skip to content

Commit

Permalink
Added pip dependencies to pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
timbernat committed Dec 18, 2024
1 parent e2e0a27 commit 40e8146
Showing 1 changed file with 30 additions and 4 deletions.
34 changes: 30 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,22 @@ classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
requires-python = ">=3.8"
requires-python = "==3.11"
# Declare any run-time dependencies that should be installed with the package.
#dependencies = [
dependencies = [
# "importlib-resources;python_version<'3.10'",
#]
"numpy",
"scipy",
"matplotlib",
"pillow",
"pandas",
"anytree",
"networkx",
"rdkit",
"openmm",
"lammps",
"mdtraj",
]

# Update the urls once the hosting is set up.
#[project.urls]
Expand All @@ -32,7 +43,22 @@ requires-python = ">=3.8"
[project.optional-dependencies]
test = [
"pytest>=6.1.2",
"pytest-runner"
"pytest-runner",
"pytest-cov",
"codecov",
]
jupyter = [
"jupyterlab",
"ipywidgets==8.0.4",
]
visuals = [
"rich",
"nglview",
"py3Dmol",
]
chemdb = [
"cirpy",
"chemspipy",
]

[tool.setuptools]
Expand Down

0 comments on commit 40e8146

Please sign in to comment.