-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
58 lines (52 loc) · 1.39 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
46
47
48
49
50
51
52
53
54
55
56
57
58
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "sceptr"
requires-python = ">=3.9"
authors = [
{name = "Yuta Nagano", email = "[email protected]"}
]
maintainers = [
{name = "Yuta Nagano", email = "[email protected]"}
]
description = "Fast and performant TCR representation model"
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 = [
"libtcrlm~=1.0",
"numpy~=1.26",
"pandas~=2.0",
"torch~=2.0",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://sceptr.readthedocs.io"
Documentation = "https://sceptr.readthedocs.io"
Repository = "https://github.com/yutanagano/sceptr"
Issues = "https://github.com/yutanagano/sceptr/issues"
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
"tox",
"sphinx",
"sphinx_book_theme",
]
docs = ["sphinx_book_theme"]
[tool.setuptools]
include-package-data = true
[tool.setuptools.dynamic]
version = {attr = "sceptr.__version__"}
[tool.pytest.ini_options]
filterwarnings = [
"ignore:The PyTorch API"
]