-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
49 lines (44 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
[project]
name = "jasentool"
dynamic = ["version"]
authors = [
{name = "Ryan Kennedy", email = "Ryan.Kennedy@skane.se"},
]
description = "Multipurpose tool for jobs related to the jasen pipeline and Bonsai tool."
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Development Status :: 3 - Alpha",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"setuptools",
"wheel",
"requests",
"tqdm",
"pandas",
"pymongo==3.13",
"openpyxl",
"biopython"
]
[project.urls]
Repository = "https://github.com/ryanjameskennedy/jasentool"
Issues = "https://github.com/ryanjameskennedy/jasentool/issues"
Changelog = "https://github.com/ryanjameskennedy/jasentool/CHANGELOG.md"
[project.scripts]
jasentool = "jasentool.__main__:main"
[project.optional-dependencies]
dev = [
"pylint ~=3.0.2",
"black ~=23.11.0",
"isort ~=5.12.0",
]
[tool.setuptools.dynamic]
version = {attr = "jasentool.__version__"}
[tool.coverage.run]
source = ["jasentool"]