-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
45 lines (41 loc) · 1.16 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "panfeed"
dynamic = [
"version"
]
authors = [
{ name="Hannes Neubauer", email="[email protected]" },
{ name="Marco Galardini", email="[email protected]" },
]
description = "Compute gene-cluster specific k-mers over a pangenome"
readme = "README.md"
license = {file = "LICENSE"}
packages = ["panfeed"]
requires-python = ">=3.6"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
dependencies = [
"numpy",
"pandas",
"pyfaidx",
"matplotlib",
"seaborn",
]
[project.scripts]
panfeed = "panfeed.__main__:main"
panfeed-get-clusters = "panfeed.get_clusters:main"
panfeed-get-kmers = "panfeed.get_kmers:main"
panfeed-plot = "panfeed.plot:main"
[tool.hatch.version]
path = "panfeed/__init__.py"
[project.urls]
"Homepage" = "https://github.com/microbial-pangenomes-lab/panfeed"
"Bug Tracker" = "https://github.com/microbial-pangenomes-lab/panfeed/issues"