-
Notifications
You must be signed in to change notification settings - Fork 48
/
pyproject.toml
57 lines (47 loc) · 1.51 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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pcgr"
version = "2.1.2" # versioned by bump2version
description = "Personal Cancer Genome Reporter (PCGR) - variant interpretation for precision cancer medicine"
authors = [
{name = "Sigve Nakken", email = "[email protected]"},
]
maintainers = [
{name = "Sigve Nakken", email = "[email protected]"},
{name = "Peter Diakumis", email = "[email protected]"},
]
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["cancer", "genomics", "pcgr"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX",
"Operating System :: Unix",
"Programming Language :: Python :: 3",
"Programming Language :: R",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
[project.urls]
Homepage = "https://sigven.github.io/pcgr/"
Documentation = "https://sigven.github.io/pcgr/"
Repository = "https://github.com/sigven/pcgr"
Changelog = "https://sigven.github.io/pcgr/articles/CHANGELOG.html"
[project.scripts]
pcgr = "pcgr.main:cli"
cpsr = "pcgr.cpsr:main"
[tool.setuptools.packages]
find = {}
[tool.setuptools]
script-files = [
"scripts/cpsr_validate_input.py",
"scripts/pcgr_summarise.py",
"scripts/pcgr_validate_input.py",
"scripts/pcgr_vcfanno.py",
"scripts/pcgrr.R",
"scripts/cpsr.R",
]