-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
55 lines (47 loc) · 1.18 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
[build-system]
requires = ["flit_core>=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "Mutation-Simulator"
dynamic = ["version"]
authors = [{name= "Marius Kühl"}]
description = "A tool for simulating random mutations in any genome"
readme = "README.md"
license = {file="LICENSE"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX :: Linux"
]
keywords = [
"Mutation",
"Simulation",
"Genome",
"SNP",
"SNPs",
"SV",
"SVs",
"Bioinformatics"
]
requires-python = ">=3.10"
dependencies = [
"numpy",
"pyfaidx",
"tqdm"
]
[project.urls]
Homepage = "https://github.com/mkpython3/Mutation-Simulator"
Bug-Tracker = "https://github.com/mkpython3/Mutation-Simulator/issues"
RMT-Documentation = "https://github.com/mkpython3/Mutation-Simulator/blob/master/rmt-docs.pdf"
[project.scripts]
mutation-simulator = "mutation_simulator.__main__:main"
[tool.flit.module]
name = "mutation_simulator"
# [tool.flit.sdist]
# include = ["data/", "rmt-docs.pdf"]
[tool.yapf]
based_on_style = "pep8"
use_tabs = true
INDENT_WIDTH = 4
CONTINUATION_INDENT_WIDTH = 8
CONTINUATION_ALIGN_STYLE = "fixed"