-
Notifications
You must be signed in to change notification settings - Fork 0
/
Pipfile
40 lines (36 loc) · 1022 Bytes
/
Pipfile
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
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[packages]
biopython = "*"
attrs = "*"
clean-base = "*"
pyqt5 = "*"
maturin = "*"
ete3 = "*"
pyside6 = "*"
pyyaml = "*"
unidecode = "*"
fastapi = "*"
starlette = ">=0.36.2"
uvicorn = "*"
pydantic = "*"
[dev-packages]
black = "*"
mypy = "*"
pre-commit = "*"
pandas = "*"
classeq = {editable = true, path = "."}
aiohttp = "*"
[requires]
python_version = "3.11"
[scripts]
test = """
env \
MOCK_MSA='src/tests/mock/input/colletotrichum-acutatom-complex/gapdh/Colletotrichum_acutatum_gapdh_gapsfree.fasta' \
MOCK_TREE='src/tests/mock/input/colletotrichum-acutatom-complex/gapdh/Colletotrichum_acutatum_gapdh-PhyML.tree' \
MOCK_PRIORS='src/tests/mock/input/colletotrichum-acutatom-complex/gapdh/Colletotrichum_acutatum_gapdh-PhyML.sanitized.train-source.json.gz' \
MOCK_REFS='src/tests/mock/input/colletotrichum-acutatom-complex/gapdh/Colletotrichum_acutatum_gapdh-PhyML.sanitized.reference-set.json.gz' \
python -m unittest
"""