-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
63 lines (56 loc) · 1.56 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "grumps"
description = "Genomic distance based Rapid Uncovering of Microbial Population Structures"
authors = [
{name = "Kaleb Abram", email = "[email protected]"},
]
maintainers = [
{name = "Kaleb Abram", email = "[email protected]"},
]
requires-python = ">=3.7"
dependencies = [
"scikit-learn",
"scipy",
"seaborn",
"pandas",
"numpy",
"pandas",
"networkx",
]
dynamic = ["version"]
readme = "src/grumps/README.md"
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Framework :: Hatch",
]
keywords = [
"genome",
"clustering",
"population structure",
"ANI",
"mash",
"machine learning",
"data cleaning",
]
[project.urls]
Homepage = "https://github.com/kalebabram/grumps"
News = "https://github.com/kalebabram/grumps/blob/master/CHANGELOG.md"
Readme = "https://github.com/kalebabram/grumps/blob/master/README.md"
Issues = "https://github.com/kalebabram/GRUMPS/issues"
[project.scripts]
grumps = "grumps.core.cli:cli"
distmat_converter = "grumps.core.distmat_converter:main"
[tool.hatch.version]
path = "src/grumps/__about__.py"