-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
45 lines (41 loc) · 1.12 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "libtcrlm"
requires-python = ">=3.9"
authors = [
{name = "Yuta Nagano", email = "[email protected]"}
]
maintainers = [
{name = "Yuta Nagano", email = "[email protected]"}
]
description = "TCR language modelling library using Pytorch."
readme = "README.md"
keywords = ["TCR", "TR", "T cell", "transformer", "bert", "MLM", "immunology", "bioinformatics"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
]
dependencies = [
"blosum~=2.0",
"pandas~=2.2",
"torch~=2.2",
"tidytcells~=2.1"
]
dynamic = ["version"]
[project.urls]
Repository = "https://github.com/yutanagano/libtcrlm"
Issues = "https://github.com/yutanagano/libtcrlm/issues"
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
"tox"
]
[tool.setuptools.dynamic]
version = {attr = "libtcrlm.VERSION"}