-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
executable file
·96 lines (87 loc) · 2.45 KB
/
pyproject.toml
File metadata and controls
executable file
·96 lines (87 loc) · 2.45 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
[tool.poetry]
name = "protscout"
version = "0.1.0"
description = "A Python package to rank protein sequences based on a suite of AI-predicted protein properties"
authors = ["Semidán Robaina-Estévez <semidan.robaina@gmail.com>"]
license = "GPL-3.0"
readme = "README.md"
packages = [{ include = "protscout", from = "src" }]
include = [
{ path = "src/protscout/*.sh", format = ["sdist", "wheel"] }
]
homepage = "https://github.com/Robaina/ProtScout"
repository = "https://github.com/Robaina/ProtScout"
documentation = "https://github.com/Robaina/ProtScout"
keywords = [
"protein-engineering",
"protein-design",
"machine-learning",
"bioinformatics",
"computational-biology",
"protein-properties",
"protein-ranking",
"sequence-analysis",
"deep-learning",
"protein-stability",
"enzyme-engineering",
"protein-language-models",
"protein-structure",
"protein-optimization",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
[tool.poetry.dependencies]
python = "^3.8"
click = "^8.0"
pyyaml = "^6.0"
rich = "^10.0"
psutil = "^5.8"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
pytest-cov = "^4.1.0"
black = "^23.3.0"
isort = "^5.12.0"
mypy = "^1.4.0"
ruff = "^0.0.275"
pre-commit = "^3.3.3"
mkdocs = "^1.4.3"
mkdocs-material = "^9.1.18"
mkdocstrings = { extras = ["python"], version = "^0.22.0" }
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
protscout = "protscout.cli:cli"
[tool.black]
line-length = 88
target-version = ['py38']
include = '\.pyi?$'
[tool.isort]
profile = "black"
multi_line_output = 3
line_length = 88
[tool.mypy]
python_version = "3.8"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
[tool.ruff]
select = ["E", "F", "B", "I"]
ignore = ["E501"]
line-length = 88
target-version = "py38"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = "test_*.py"
addopts = "--cov=protscout --cov-report=html --cov-report=term"