-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (36 loc) · 1.08 KB
/
Copy pathpyproject.toml
File metadata and controls
42 lines (36 loc) · 1.08 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
[tool.poetry]
name = 'schemarecomb'
version = '0.0.5'
description = 'Design recombinant protein libraries for Golden Gate Assembly.'
authors = ['Bennett Bremer <bennettjamesbremer@gmail.com>']
[tool.poetry.dependencies]
python = '>=3.10'
biopython = '^1.79'
numpy = '<2.0'
scipy = '^1.6.3'
[tool.poetry.group.dev.dependencies]
flake8 = "^3.9.2"
mypy = "^2.1.0"
pytest = '^9.0.3'
pytest-mock = '^3.6.1'
sphinx = '^4.0.1'
sphinx-autodoc-typehints = '^1.12.0'
[tool.poetry.urls]
"Download" = "https://pypi.org/project/schemarecomb"
"Source Code" = "https://github.com/RomeroLab/schemarecomb"
"Documentation" = "https://schemarecomb.readthedocs.io/en/latest"
[tool.pytest.ini_options]
addopts = "--doctest-modules"
doctest_optionflags = "ELLIPSIS"
testpaths = [
"tests/unit/",
"src/schemarecomb/libraries.py",
"src/schemarecomb/pdb_structure.py",
"src/schemarecomb/parent_alignment.py",
"README.rst"
]
# [tool.poetry.scripts]
# schemarecomb = {reference = "bin/schemarecomb", type="file"}
[build-system]
requires = ["poetry-core>=1.1.0a5"]
build-backend = "poetry.core.masonry.api"