We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53cb282 commit 607df3fCopy full SHA for 607df3f
pyproject.toml
@@ -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
32
[tool.black]
33
line-length = 120
34
target-version = ['py38']
0 commit comments