forked from linsalrob/sphae
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (41 loc) · 1.22 KB
/
pyproject.toml
File metadata and controls
44 lines (41 loc) · 1.22 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
[build-system]
requires = ["setuptools>=69", "setuptools_scm", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "sphae"
version = "1.5.4" # Update as appropriate
description = "Phage workflow"
readme = { file = "README.md", content-type = "text/markdown" }
authors = [
{ name = "Bhavya Papudeshi", email = "npbhavya13@gmail.com" }
]
license = { text = "MIT" }
keywords = ["phage", "phage therapy", "bioinformatics", "microbiology", "genome", "genomics"]
classifiers = [
"Environment :: Console",
"Environment :: MacOS X",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Bio-Informatics"
]
requires-python = ">=3.9"
dependencies = [
"snaketool-utils>=0.0.5",
"snakemake>=8.28.0",
"pyyaml>=6.0",
"Click==8.1.3",
"metasnek>=0.0.8",
"attrmap>=0.0.7",
"biopython>=1.8.1",
"pandas",
"matplotlib",
"snakemake-executor-plugin-slurm>=0.5.1"
]
[project.scripts]
sphae = "sphae.__main__:main"
[tool.setuptools]
packages = ["sphae"]