forked from yuliajk/tcremp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (43 loc) · 1.33 KB
/
pyproject.toml
File metadata and controls
47 lines (43 loc) · 1.33 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "tcremp"
version = "0.0.1"
authors = [
{ name="yuliajk", email="yulia.mow@gmail.com" },
{ name="vek239", email="elizaveta.k.vlasova@gmail.com" },
{ name="mikessh", email="mikhail.shugay@gmail.com" },
]
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"
dependencies = [
"mirpy-lib==1.0.0",
"numpy>=1.25,<3",
"scipy>=1.11,<2",
"pandas>=2.0,<3",
"scikit-learn>=1.3,<2",
"kneed>=0.8.5,<1",
"psutil>=5.9",
"matplotlib>=3.7,<4",
"seaborn>=0.12,<1",
"pympler>=1.1",
"pyarrow>=15,<22"
]
[project.urls]
Homepage = "https://github.com/antigenomics/tcremp"
Issues = "https://github.com/antigenomics/tcremp/issues"
[project.scripts]
tcremp-run = "tcremp.tcremp_run:main"
tcremp-cluster = "tcremp.tcremp_cluster:main"
tcremp-enrich = "tcremp.tcremp_enrich:main"
[tool.hatch.metadata]
allow-direct-references = true