-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
68 lines (61 loc) · 1.88 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
65
66
67
68
[build-system]
requires = [
"setuptools >= 62.3.0",
"wheel >= 0.29.0",
]
build-backend = 'setuptools.build_meta'
[project]
name = 'LOGAN'
dynamic = ['version','readme']
description = "whoLe genOme-sequencinG Analysis pipeliNe"
keywords = ["bioinformatics", "nextflow"]
authors = [
{name = 'Darryl Nousome', email = '[email protected]'},
{name = "Kelly Sovacool", email = "[email protected]"},
{name = "Vishal Koparde", email = "[email protected]"},
]
maintainers = [
{name = "CCR Collaborative Bioinformatics Resource", email = "[email protected]"},
]
license = {file = "LICENSE"}
classifiers = [
"Environment :: Console",
"Environment :: MacOS X",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT license",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
requires-python = ">=3.8"
dependencies = [
"pyyaml >= 6.0",
"Click >= 8.1.3",
"cffconvert"
]
[project.optional-dependencies]
dev = [
"black >= 22.0.0",
"pre-commit"
]
test = [
"pytest"
]
[project.scripts]
logan = "logan.src.__main__:main"
[project.urls]
Homepage = "https://ccbr.github.io/LOGAN"
Documentation = "https://ccbr.github.io/LOGAN"
Repository = "https://github.com/CCBR/LOGAN"
Changelog = "https://github.com/CCBR/LOGAN/blob/main/CHANGELOG.md"
[tool.setuptools.package-dir]
logan = "."
[tool.setuptools.package-data]
"*" = ["CITATION.cff", "LICENSE", "VERSION", "main.nf", "nextflow.config", "assets/**", "bin/**", "conf/**", "lib/**", "modules/**", "subworkflows/**", "workflows/**", "tests/**"]
[tool.setuptools.dynamic]
version = {file = "VERSION"}
readme = {file = "README.md"}