forked from yuliajk/tcremp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (44 loc) · 1.4 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "tcremp"
version = "0.0.1"
authors = [
{ name="yuliajk", email="[email protected]" },
{ name="mikessh", email="[email protected]" },
]
description = "A library prototype-based T-cell receptor (TCR) sequence embedding"
readme = "README.md"
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
keywords = [ "antigen", "antibody", "t-cell", "receptor", "sequence", "embedding"]
requires-python = ">=3.11,<3.12"
dependencies = [
"mir@git+https://github.com/antigenomics/[email protected]",
"biopython==1.81",
"matplotlib==3.7.2",
"numpy>=1.25.1; python_version < '3.12'",
"numpy>=1.26.4; python_version >= '3.12'",
"olga==1.2.4",
"pandas==2.0.3",
"python_igraph==0.10.6",
"scipy==1.11.2",
"seaborn==0.12.2",
"umap-learn==0.5.3",
"scikit-learn==1.3.0",
"textdistance==4.5.0",
"plotnine==0.12.3",
"kneed==0.8.5"
]
[project.urls]
Homepage = "https://github.com/antigenomics/tcremp"
Issues = "https://github.com/antigenomics/tcremp/issues"
[project.scripts]
tcremp-run = "tcremp.tcremp_run:main"
[tool.hatch.metadata]
allow-direct-references = true