-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (40 loc) · 1.11 KB
/
pyproject.toml
File metadata and controls
45 lines (40 loc) · 1.11 KB
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
# pyproject.toml
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "catrax-pathfinder"
version = "1.2.2"
dependencies = [
"numpy==1.26.4",
"xgboost==2.1.4",
"pandas==2.3.1",
"mysql-connector-python",
"seaborn",
"matplotlib",
"optuna",
]
description = "Pathfinder is designed to identify semantic paths between two biological entities."
readme = "README.md"
requires-python = ">=3.9"
authors = [
{ name = "Mohsen Taheri", email = "mohsen.taheri.1989@gmail.com" }
]
license = { text = "MIT" } # or use "file" with LICENSE
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/Translator-CATRAX/pathfinder"
Issues = "https://github.com/Translator-CATRAX/pathfinder/issues"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
# Include resource files in the wheel
"pathfinder.resources" = [
"*.pkl",
"pathfinder_xgboost_model_kg*"
]