This repository has been archived by the owner on Nov 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
70 lines (66 loc) · 2 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
63
64
65
66
67
68
69
70
[build-system]
requires = ["setuptools>=67.5.1", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
namespaces = true
where = ["src"]
[project]
name = "orthomap"
version = "0.0.1"
description = "extract orthomap from OrthoFinder output for query species"
authors = [
{name = "Kristian K Ullrich", email="[email protected]"},
{name = "Nikoleta E Glynatsi", email="[email protected]"},
]
maintainers = [
{name = "Kristian K Ullrich", email="[email protected]"},
]
license = {text = "GPLv3"}
readme = "README.md"
requires-python = ">=3.8"
keywords = ["orthomap", "gene age", "orthologs", "phylostratigraphy", "single-cell"]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
]
dependencies = [
"setuptools>=67.5.1",
"numpy<1.24",
"numba",
"scipy",
"pandas>=1.5.3",
"ete3",
"anndata",
"scanpy>=1.9.3",
"seaborn",
"statannot",
"harmonypy>=0.0.9",
"louvain>=0.8.0",
"umap-learn>=0.5.3",
"alive-progress",
"biopython",
"wget>=3.2",
"pytest",
"pip",
]
[project.urls]
"Homepage" = "https://github.com/kullrich/orthomap"
"Bug Tracker" = "https://github.com/kullrich/orthomap/issues"
documentation = "https://orthomap.readthedocs.io/en/latest/"
repository = "https://github.com/kullrich/orthomap"
[project.scripts]
orthomap = "orthomap.__main__:main"
cds2aa = "orthomap.cds2aa:main"
eggnog2orthomap = "orthomap.eggnog2orthomap:main"
plaza2orthomap = "orthomap.plaza2orthomap:main"
orthomcl2orthomap = "orthomap.orthomcl2orthomap:main"
gtf2t2g = "orthomap.gtf2t2g:main"
ncbitax = "orthomap.ncbitax:main"
of2orthomap = "orthomap.of2orthomap:main"
qlin = "orthomap.qlin:main"