-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (68 loc) · 2.17 KB
/
pyproject.toml
File metadata and controls
76 lines (68 loc) · 2.17 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
69
70
71
72
73
74
75
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "olga"
version = "1.3.0"
description = "Compute generation probability of CDR3 sequences"
readme = "README.md"
requires-python = ">=2.7"
license = {text = "GPLv3"}
authors = [
{name = "Zachary Sethna", email = "zachary.sethna@gmail.com"}
]
maintainers = [
{name = "Giulio Isacchini", email = "giulioisac@gmail.com"}
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Healthcare Industry",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.6",
]
urls = {Homepage = "https://github.com/statbiophys/OLGA"}
dependencies = [ "numpy", "numba" ]
[project.optional-dependencies]
test = [
"pytest>=6.0",
"pytest-cov>=3.0",
]
[project.scripts]
olga-compute_pgen = "olga.compute_pgen:main"
olga-generate_sequences = "olga.generate_sequences:main"
[tool.setuptools]
packages = {find = {}}
zip-safe = false
[tool.setuptools.package-data]
"olga.default_models.human_T_alpha" = ["*"]
"olga.default_models.human_T_beta" = ["*"]
"olga.default_models.mouse_T_beta" = ["*"]
"olga.default_models.mouse_T_alpha" = ["*"]
"olga.default_models.human_B_heavy" = ["*"]
"olga.default_models.human_B_kappa" = ["*"]
"olga.default_models.human_B_lambda" = ["*"]
"olga.default_models.mouse_B_heavy" = ["*"]
"olga.default_models.mouse_B_kappa" = ["*"]
"olga.default_models.mouse_B_lambda" = ["*"]
[tool.setuptools.data-files]
"" = ["README.md", "LICENSE", "example_expanded_amino_acid_alphabet.txt"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = [
"-v",
"--strict-markers",
"--tb=short",
]
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
]