Skip to content

Commit 76afd4a

Browse files
Added pyproject.toml with project metadata and dev dependencies (#22)
### Changes included #### Added pyproject.toml with: - Project name, version, author, and Python version - Runtime dependency: openmm>=8.3.0 - Development dependencies: black, ruff - Prepared for setuptools-based build backend
1 parent b2f74f5 commit 76afd4a

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

pyproject.toml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
[build-system]
2+
requires = ["setuptools>=61.0", "wheel"]
3+
build-backend = "setuptools.build_meta"
4+
5+
[project]
6+
name = "pyaptamer"
7+
version = "0.0.1.dev0"
8+
description = "Python library for aptamer simulation"
9+
readme = "README.md"
10+
requires-python = ">=3.10"
11+
authors = [
12+
{ name="Your Name", email="your@email.com" }
13+
]
14+
15+
dependencies = [
16+
"openmm>=8.3.0,<8.4.0"
17+
]
18+
19+
[project.optional-dependencies]
20+
dev = [
21+
"ruff>=0.12.0",
22+
"black>=25.0",
23+
"pytest>=8.0.0"
24+
]

0 commit comments

Comments
 (0)