27 lines
624 B
TOML
27 lines
624 B
TOML
[build-system]
|
|
requires = ["setuptools>=68", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "deeplearning-qtools"
|
|
version = "0.0.1"
|
|
description = "Reusable Qfunctions and Qtorch modules from Deeplearning"
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
authors = [{ name = "Deeplearning Team" }]
|
|
dependencies = [
|
|
"numpy>=1.24",
|
|
"pandas>=2.0",
|
|
"matplotlib>=3.7",
|
|
"scikit-learn>=1.3",
|
|
"openpyxl>=3.1",
|
|
"torch>=2.0",
|
|
]
|
|
|
|
[tool.setuptools]
|
|
include-package-data = true
|
|
|
|
[tool.setuptools.packages.find]
|
|
include = ["Qfunctions*", "Qtorch*"]
|
|
exclude = ["Result*", "Static*", "Scripts*", "conda_env*"]
|