-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathpyproject.toml
More file actions
126 lines (121 loc) · 3.79 KB
/
pyproject.toml
File metadata and controls
126 lines (121 loc) · 3.79 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
[project]
authors = [
{ name = "Björn F. Johansson", email = "bjornjobb@gmail.com" },
{ name = "Manuel Lera-Ramirez", email = "manulera14@gmail.com" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Education",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Education",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
# description = "Representing double stranded DNA and functions for simulating cloning and homologous recombination between DNA molecules."
dynamic = ["version"]
name = "pydna"
readme = "README.md"
[tool.poetry.urls]
Changelog = "https://github.com/pydna-group/pydna/blob/master/docs/CHANGELOG.md#changelog"
[tool.poetry]
description = "Representing double stranded DNA and functions for simulating cloning and homologous recombination between DNA molecules."
authors = [
"Björn F. Johansson <bjornjobb@gmail.com>",
"Manuel Lera-Ramirez <manulera14@gmail.com>",
]
documentation = "https://pydna-group.github.io/pydna"
homepage = "https://github.com/pydna-group/pydna#-pydna"
license = "BSD"
name = "pydna"
readme = "README.md"
repository = "https://github.com/pydna-group/pydna/tree/master"
version = "6.0.0-a.24.post.17+b7b559bd66"
[tool.poetry.dependencies]
appdirs = ">=1.4.4"
biopython = "^1.87"
cai2 = { version = ">=1.0.5", optional = true }
matplotlib = { version = ">=3.4.3", optional = true }
networkx = ">=2.8.8"
numpy = [
{ version = ">1.26", python = "<3.12" },
{ version = ">=2.3.0", python = ">=3.12" },
]
pillow = { version = ">=8.4.0", optional = true }
prettytable = ">=3.5.0"
pydivsufsort = "^0.0.20"
pyfiglet = "0.8.post1"
pyparsing = { version = ">=2.4.7", optional = true }
pyperclip = { version = ">=1.8.2", optional = true }
python = ">=3.10,<4.0"
requests = { version = ">=2.26.0", optional = true }
pyahocorasick = { version = ">=2.2.0", optional = true }
scipy = [
{ version = ">=1.11.3", python = ">=3.12", optional = true },
{ version = ">=1.9.3", python = "<3.12", optional = true },
]
seguid = ">=0.0.5"
regex = ">=2024.11.6,<2027.0.0"
opencloning-linkml = "^1"
sgffp = "^0.15.4"
[tool.poetry.extras]
clipboard = ["pyperclip"]
download = ["pyparsing", "requests"]
express = ["cai2"]
gel = ["scipy", "matplotlib", "pillow"]
primer_screen = ["pyahocorasick"]
[build-system]
build-backend = "poetry_dynamic_versioning.backend"
requires = ["poetry-core", "poetry-dynamic-versioning"]
[tool.poetry-dynamic-versioning]
enable = true
style = "semver"
vcs = "git"
[tool.poetry-dynamic-versioning.substitution]
files = ["src/pydna/__init__.py"]
[tool.poetry.group.test] # This part can be left out
[tool.poetry.group.test.dependencies]
coverage = ">=7.1.0"
nbval = ">=0.9.6"
pytest = ">=7.2.0"
pytest-cov = ">=4.0.0"
pytest-doctestplus = ">=0.12.1"
pytest-profiling = ">=1.7.0"
requests-mock = ">=1.10.0"
[tool.poetry.group.docs.dependencies]
numpydoc = "^1.6.0"
sphinx = "*"
# sphinx-rtd-theme = ">=1.3,<4.0"
# nbconvert = "^7.16.4"
# myst-parser = [
# { version = ">3.0.0", python = "<3.10" },
# { version = ">=4.0.0", python = ">=3.10" },
# ]
myst-nb = "*"
sphinx-book-theme = "*"
pandas = "*"
[tool.poetry.group.dev.dependencies]
autopep8 = "^2.1.0"
black = ">=25.1,<27.0"
pre-commit = ">3.6"
nbstripout = "^0.9"
flake8-bugbear = "^24.12.12"
[tool.pytest.ini_options]
minversion = "6.0.2"
python_files = "test_*.py"
testpaths = ["tests", "src/pydna"]
norecursedirs = ["*"]
markers = [
"mpl_image_compare",
]
[tool.black]
include = '\.pyi?$'
line-length = 88
target-version = ["py38", "py39", "py310", "py311", "py312"]
[tool.poetry.requires-plugins]
poetry-plugin-export = ">=1.9"