Skip to content

Commit 607df3f

Browse files
committed
adding poetry support
1 parent 53cb282 commit 607df3f

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

pyproject.toml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,34 @@
1+
[tool.poetry]
2+
name = "biospec"
3+
version = "0.1.0"
4+
description = ""
5+
authors = ["Your Name <[email protected]>"]
6+
7+
[tool.poetry.dependencies]
8+
python = "^3.8"
9+
numpy = "*"
10+
pydantic = {version = ">=2.0.1"}
11+
packaging = {version = ">=17.0"}
12+
ruamel-yaml = "^0.18.5"
13+
deepdiff = "^6.7.1"
14+
email-validator = "^2.1.0.post1"
15+
python-dateutil = "^2.8.2"
16+
annotated-types = "^0.6.0"
17+
typing-extensions = "^4.8.0"
18+
lxml = "^4.9.3"
19+
20+
[tool.poetry.group.dev.dependencies]
21+
pytest-cov = "^4.1.0"
22+
black = "^23.11.0"
23+
pyright = "^1.1.336"
24+
pooch = "^1.8.0"
25+
pre-commit = "^3.5.0"
26+
pytest = "^7.4.3"
27+
28+
[build-system]
29+
requires = ["poetry-core>=1.0.0"]
30+
build-backend = "poetry.core.masonry.api"
31+
132
[tool.black]
233
line-length = 120
334
target-version = ['py38']

0 commit comments

Comments
 (0)