-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
33 lines (28 loc) · 913 Bytes
/
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "isONcorrect"
version = "0.1.3.5"
authors = [
{ name="Kristoffer Sahlin", email="[email protected]" },
]
description = "De novo error-correction of long-read transcriptome reads"
readme = "README.md"
requires-python = ">=3.4"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [ "edlib >= 1.1.2", "numpy >= 1.16.2", "parasail == 1.3.4"]
[tool.setuptools.packages.find]
where = ["src"]
include = ["isoncorrect*"]
namespaces = false
[project.scripts]
run_isoncorrect = 'isoncorrect.run_isoncorrect:main'
isONcorrect = 'isoncorrect.isONcorrect:main'
[project.urls]
"Homepage" = "https://github.com/ksahlin/isONcorrect"
"Bug Tracker" = "https://github.com/ksahlin/isONcorrect/issues"