-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
66 lines (59 loc) · 1.92 KB
/
pyproject.toml
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[tool.poetry]
name = "dasi"
version = "0.2.1"
description = "Automated DNA assembly planner for Python"
authors = ["Justin Vrana <[email protected]>"]
classifiers = [
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Development Status :: 4 - Beta"
]
readme = "README.md"
homepage = "https://github.com/jvrana/dasi-dna-design"
documentation = "https://jvrana.github.io/dasi-dna-design"
[tool.poetry.dependencies]
python = "^3.6.1"
networkx = "^2.3"
tqdm = "^4.32"
loggable-jdv = "^0.1.5"
msgpack = "^0.6.1"
msgpack-numpy = "^0.4.7"
sympy = "^1.4"
numpy = "^1.17"
biopython = "^1.78"
matplotlib = "^3.1"
frozendict = "^1.2"
jsonschema = "^3.1"
more-itertools = "^8.0"
primer3plus = "^1.0.8"
pandas = [
{"version" = "^1.1.0", "python" = "^3.7"}
]
pyblastbio = "^0.9"
jdna = "^0.2"
# these are really dev dependenciesad, but cannot
# be optional due to weird non-obvious reasons with Poetry
pre-commit = {version = "^1.17", optional = true}
flake8 = {version = "^3.7", optional = true}
autodocsumm = {version = "^0.1.11", optional = true}
recommonmark = {version = "^0.6.0", optional = true}
nbsphinx = {version = "^0.4.2", optional = true}
sphinx_autodoc_typehints = {version = "^1.8", optional = true}
sphinx-jsonschema = {version = "^1.11", optional = true}
sphinx = {version = "^2.2", optional = true}
sphinx-bootstrap-theme = {version = "^0.7.1", optional = true}
black = {version = "^20.8b1", optional = true}
[tool.poetry.dev-dependencies]
pytest = "^5.0"
pytest-benchmark = "^3.2"
dictdiffer = "^0.8.0"
flaky = "^3.6"
pytest-cov = "^2.10.1"
[tool.poetry.extras]
documentation = ["nbsphinx", "autodocsumm", "recommonmark", "sphinx_autodoc_typehints", "sphinx-jsonschema", "sphinx", "sphinx-bootstrap-theme"]
styling = ["flake8", "black", "pre-commit"]
[tool.poetry.scripts]
dasi = 'dasi:command_line.main'
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"