-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
64 lines (53 loc) · 1.64 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
[project]
name = "fealden"
authors = [{name = "Andrew J. Bonham", email = "[email protected]"}]
readme = "README.md"
description = "Tool for generating optimized nucleic acid biosensor sequences."
license = {file = "LICENSE"}
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
dependencies = ["python-dotenv"]
# Other dependences:
# "RNAstructure @ https://rna.urmc.rochester.edu/RNAstructure.html",
# "unafold3.8 @ http://www.unafold.org/Dinamelt/software/obtaining-unafold.php",
#"mfold3.6 @ http://www.unafold.org/mfold/software/download-mfold.php"
keywords = ["biosensor", "aptamer", "DNA"]
version = "0.3.3"
[project.urls]
Homepage = "https://github.com/Paradoxdruid/fealden"
[project.scripts]
fealden = "fealden:__main__"
[project.optional-dependencies]
dev = [
"black",
"mypy",
"flake8",
"isort",
"pyupgrade",
]
[tool.setuptools]
packages = ["fealden"]
[tool.setuptools.package-data]
fealden = ["../README.md"]
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
filterwarnings = ["ignore::DeprecationWarning"]
[tool.mypy]
ignore_missing_imports = true
strict = true
files = "fealden/*.py"
[tool.isort]
profile = "black"
[tool.ruff]
select = ["E", "F", "B", "W", "I", "C4", "PIE", "PYI"]
ignore = ["B905"]