-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (27 loc) · 754 Bytes
/
pyproject.toml
File metadata and controls
31 lines (27 loc) · 754 Bytes
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
[tool.poetry]
name = "repeatanalyzer"
version = "3.0.5"
description = "This is a project is a tool for genotyping certain microbes base on varying patterns of short sequence repeats (SSRs)."
authors = ["Helen Catanese <hncatanese@gmail.com>"]
license = "GPL-3.0"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.10, <3.13"
basemap = "^1.3.8"
matplotlib = "<3.8"
scipy = "^1.11.3"
geopy = "^2.4.0"
toml = "^0.10.2"
pyshp = "^2.3.1"
numpy = ">=1.21,<1.26"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.5.0"
black = "^23.9.1"
pytest = "^7.4.2"
coverage = "^7.3.2"
pytest-cov = "^4.1.0"
[tool.poetry.group.build.dependencies]
pyinstaller = "^6.2.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"