-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (34 loc) · 827 Bytes
/
pyproject.toml
File metadata and controls
39 lines (34 loc) · 827 Bytes
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
[project]
name = "hullqsar"
version = "0.0.1"
description = "HullQSAR. A Python package to calculate HullQSAR descriptors."
readme = "README.md"
authors = [
{ name = "Heliton Martins", email = "helitonmrf@gmail.com" }
]
requires-python = ">=3.11"
dependencies = [
"click>=8.1.8",
"loguru>=0.7.3",
"matplotlib>=3.10.0",
"numpy>=2.2.3",
"pandas>=2.2.3",
"plotly>=6.0.0",
"scipy>=1.15.2",
]
[dependency-groups]
dev = [
"ipykernel>=6.29.5",
"nbformat>=5.10.4",
"ruff>=0.9.7",
]
[project.scripts]
hullqsar = "hullqsar.cli:cli_main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["hullqsar"]
[tool.hatch.build.targets.sdist]
include = ["hullqsar", "README.md", "pyproject.toml"]
exclude = [".venv", "notebooks"]