We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a7c65e commit f10975cCopy full SHA for f10975c
pyproject.toml
@@ -4,3 +4,26 @@ build-backend = "setuptools.build_meta"
4
5
[tool.black]
6
line-length = 88
7
+
8
+[metadata]
9
+name = needleman-wunsch
10
+version = 0.1.0
11
+description = Needleman-Wunsch
12
+license = MIT
13
14
15
+[options]
16
+package_dir =
17
+ = src
18
+packages = find:
19
20
+[options.packages.find]
21
+where = src
22
23
+[options.entry_points]
24
+controle_scripts =
25
+ needleman-wunsch = aligner.cli:main
26
27
+[mypy]
28
+mypy_path = src
29
+ignore_missing_imports = True
setup.cfg
0 commit comments