-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (59 loc) 路 1.57 KB
/
Copy pathpyproject.toml
File metadata and controls
66 lines (59 loc) 路 1.57 KB
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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "reneo"
dynamic = ["version"]
description = "Unraveling Viral Genomes from Metagenomes"
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.10"
license = { file = "LICENSE" }
authors = [
{ name = "Vijini Mallawaarachchi", email = "viji.mallawaarachchi@gmail.com" },
]
dependencies = [
"snakemake>=7.14.0,<8",
"pulp>=2.7,<2.8",
"pyyaml>=6.0",
"click>=8.1.3",
"metasnek>=0.0.5",
"snaketool-utils>=0.0.4",
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/Vini2/reneo"
[project.scripts]
reneo = "reneo.__main__:main"
[tool.setuptools]
packages = { find = { include = ["reneo*"] } }
include-package-data = true
[tool.setuptools.dynamic]
version = { file = ["reneo/reneo.VERSION"] }
[tool.setuptools.package-data]
reneo = [
"reneo.CITATION",
"reneo.LICENSE",
"reneo.VERSION",
"config/*.yaml",
"test_data/*.gfa",
"test_data/*.hmm",
"test_data/reads/*.fastq.gz",
"workflow/*.smk",
"workflow/envs/*.yaml",
"workflow/rules/*.smk",
"workflow/scripts/*.py",
"workflow/scripts/reneo_utils/*.py",
]
[tool.setuptools.exclude-package-data]
reneo = [
"**/.DS_Store",
"**/__pycache__/*",
"**/*.pyc",
]