28 lines
681 B
TOML
28 lines
681 B
TOML
[build-system]
|
|
requires = ["setuptools>=42", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "FScanpy"
|
|
version = "1.0.0"
|
|
description = "PRF prediction tool"
|
|
authors = [{name = "FScanpy Developer", email = "example@example.com"}]
|
|
dependencies = [
|
|
"numpy>=1.24.3",
|
|
"pandas>=2.2.3",
|
|
"tensorflow>=2.10.1",
|
|
"scikit-learn>=1.6.0",
|
|
"matplotlib>=3.9.4",
|
|
"joblib>=1.4.2",
|
|
"biopython>=1.85",
|
|
"wrapt>=1.17.0",
|
|
"openpyxl>=3.1.5"
|
|
]
|
|
requires-python = ">=3.9"
|
|
|
|
[tool.setuptools]
|
|
packages = ["FScanpy", "FScanpy.features"]
|
|
include-package-data = true
|
|
|
|
[tool.setuptools.package-data]
|
|
"FScanpy.data" = ["test_data/*"] |