-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
51 lines (40 loc) · 947 Bytes
/
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
[project]
name = "maligner"
version = "0.0.2"
description = "An Open-Source Molecular Alignment Tool"
readme = "README.md"
license = { file = "LICENSE" }
authors = [{ name = "Heliton Martins", email = "[email protected]" }]
urls = { Homepage = "https://github.com/hellmrf/maligner" }
gui-scripts = { gui = "maligner:launch" }
## Dependencies
requires-python = ">=3.12"
dependencies = [
"datamol>=0.12.5",
"numpy>=2.1.3",
"pandas>=2.2.3",
"pyside6>=6.8.1",
"rdkit>=2024.3.6",
]
[dependency-groups]
dev = [
"mypy>=1.13.0",
"pandas-stubs>=2.2.3.241126",
"ruff>=0.8.2",
]
# Build system
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.sdist]
include = ["/maligner"]
[tool.hatch.build.targets.wheel]
packages = ["maligner"]
# Other tools
## mypy
[tool.mypy]
packages = ["maligner"]
exclude = [ "molecules/*"]
## ruff
[tool.ruff]
exclude = ["molecules/*"]