-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (61 loc) · 1.67 KB
/
Copy pathpyproject.toml
File metadata and controls
68 lines (61 loc) · 1.67 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "mhctools"
dynamic = ["version"]
description = "Python interface to MHC binding, presentation, immunogenicity, and antigen processing predictors"
readme = { file = "README.md", content-type = "text/markdown" }
license = "Apache-2.0"
requires-python = ">=3.9"
authors = [
{ name = "Alex Rubinsteyn", email = "alex@openvax.org" },
{ name = "Julia Kodysh", email = "julia@openvax.org" },
{ name = "Tim O'Donnell", email = "tim@openvax.org" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
dependencies = [
"numpy>=2.0.0,<3.0.0",
"pandas>=0.13.1",
"varcode>=0.5.9",
"pyensembl>=2.3.0,<3.0.0",
"sercol>=0.0.2",
"mhcflurry>=2.0.0",
"mhcgnomes>=3.4.0",
]
[project.optional-dependencies]
pepsickle = [
"pepsickle",
]
nettcr = [
# A TFLite runtime for NetTCR's bundled models. ai-edge-litert is the
# lightweight option; tensorflow also works. The NetTCR-2.2 repository
# itself (weights) must be cloned separately.
"ai-edge-litert",
]
dev = [
"build",
"ruff",
"pytest",
"pytest-cov",
"twine",
"wheel",
]
[project.scripts]
mhctools = "mhctools.cli.script:main"
[project.urls]
Homepage = "https://github.com/openvax/mhctools"
[tool.setuptools.dynamic]
version = { attr = "mhctools.__version__" }
[tool.setuptools]
packages = ["mhctools", "mhctools.cli"]
[tool.setuptools.package-data]
"mhctools" = ["logging.conf"]
"mhctools.cli" = ["logging.conf"]