-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (32 loc) · 947 Bytes
/
pyproject.toml
File metadata and controls
37 lines (32 loc) · 947 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
[project]
name = "tmbed"
version = "1.0.2"
description = "Transmembrane protein predictor using embeddings"
authors = [{name = "Michael Bernhofer", email = "Michael.Bernhofer@tum.de"}]
maintainers = [{name = "Michael Bernhofer", email = "Michael.Bernhofer@tum.de"}]
license = "Apache-2.0"
license-files = ["LICENSE"]
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"h5py >= 3.2.1",
"numpy >= 1.20.3",
"sentencepiece >= 0.1.96",
"torch >= 1.10.2",
"tqdm >= 4.62.3",
"transformers >= 4.11.3",
"typer >= 0.4.1",
]
[project.scripts]
tmbed = "tmbed.tmbed:run"
[project.urls]
Homepage = "https://github.com/BernhoferM/TMbed"
Issues = "https://github.com/BernhoferM/TMbed/issues"
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
packages = ["tmbed"]
[tool.setuptools.package-data]
tmbed = ["models/cnn/*.pt"]