-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
88 lines (77 loc) · 1.86 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
[build-system]
requires = ["setuptools>=68", "setuptools_scm[toml]>=7", "wheel"]
[tool.setuptools_scm]
version_scheme = "no-guess-dev"
write_to = "src/alhambra/_version.py"
[tool.pytest.ini_options]
addopts = "--cov qslib --cov-report term-missing --verbose"
norecursedirs = [
"dist",
"build",
".tox"]
testpaths = ["tests"]
pythonpath = [
"src"
]
[project]
name = "alhambra"
dynamic = ["version"]
description = "DNA Tile System Designer"
license = {text = "BSD 3-Clause"}
authors = [{name = "Constantine Evans", email = "[email protected]"}]
readme = {file = "README.md", "content-type" = "text/markdown; charset=UTF-8"}
classifiers = ["Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: BSD License",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Typing :: Typed"]
requires-python = ">=3.9"
dependencies = [
"numpy",
"stickydesign >= 0.9.0.a1",
"shutilwhich",
"peppercompiler >= 0.1.2",
"ruamel.yaml >= 0.15.100",
"cssutils",
"openpyxl",
"typing_extensions >= 4.1",
"pint >= 0.19.2",
"tabulate",
"toml",
"scadnano",
"xgrow >= 20220722",
"alhambra_mixes >= 0.4.0"
]
[project.optional-dependencies]
all = [
"seaborn",
"matplotlib",
"scadnano",
"pandas",
]
docs = [
"numpydoc",
"matplotlib",
"sphinx-book-theme",
"sphinx-autoapi",
"myst-parser"
]
testing = [
"setuptools",
"pytest",
"pytest-cov"
]
[project.scripts]
alhambra = "alhambra.scripts:alhambra"
[tool.black]
target_version = ["py310"]
[tool.mypy]
python_version = "3.10"
# warn_return_any = true
warn_unused_configs = true
ignore_missing_imports = true
#disallow_untyped_defs = true
#disallow_incomplete_defs = true