-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (58 loc) · 1.4 KB
/
Copy pathpyproject.toml
File metadata and controls
63 lines (58 loc) · 1.4 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "tap2"
version = "0.1.1"
license = "Apache-2.0"
license-files = ["LICENSE"]
readme = "README.md"
authors = [
{name = "Hang Luo", email = "haaaatcher@gmail.com"},
{name = "Shan Li"},
{name = "Qi-yang Lv"},
{name = "Lu-yue Qiu"},
{name = "Rui-hao He"},
{name = "Bo-han Zhang"},
{name = "Cheng-wei Li"}
]
urls = {Homepage = "https://github.com/Haaaatcher"}
description = "Use tap2 for property prediction of titanium alloy and aluminum alloy."
requires-python = ">=3.10"
keywords = ["titanium alloy", "aluminum alloy", "property prediction"]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"torch>=2.10.0",
"gradio>=6.14.0",
"litserve>=0.2.17",
"click>=8.3.3",
"art>=6.5",
"numpy>=2.2.6",
"pandas>=3.0.2",
"pydantic>=2.13.4",
"sparsemax>=0.1.9",
"loguru>=0.7.3",
"charset_normalizer>=3.4.3",
"joblib>=1.5.3",
"ncn>=0.0.5"
]
[project.scripts]
tapp = "tap2.client:run_gradio_client"
tapp-client = "tap2.client:run_gradio_client"
tapp-server = "tap2.server:run_lit_server"
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
tap2 = [
"resource/*",
"checkpoints/*"
]
strengthml = [
"*.pkl",
"*.joblib"
]
[tool.setuptools.packages]
find = {}