-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
52 lines (43 loc) · 1.03 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "molgeom"
description = "A simple molecular geometry manipulation library."
version = "0.6.10"
readme = "README.md"
license = {file = "LICENSE"}
authors = [{ name = "sio-salt", email = "[email protected]" }]
requires-python = ">=3.10"
dependencies = [
"cachetools>=5.2.0",
"click>=8.1.7",
"networkx>=2.6.3",
]
[project.urls]
Homepage = "https://github.com/sio-salt/molgeom"
Repository = "https://github.com/sio-salt/molgeom"
Documentation = "https://github.com/sio-salt/molgeom-examples"
[project.scripts]
molgeom = "molgeom.cli.cli_main:cli"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
include = ["molgeom*"]
[tool.setuptools.package-data]
"molgeom" = [
"data/*.json",
"data/*.yaml",
"templates/*.html"
]
[tool.uv]
dev-dependencies = [
"pre-commit>=4.0.1",
"pytest>=8.3.4",
"ruff>=0.9.1",
]
[tool.ruff]
line-length = 88
[tool.ruff.lint]
ignore = ["F841"]