-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (59 loc) · 1.75 KB
/
pyproject.toml
File metadata and controls
64 lines (59 loc) · 1.75 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
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling"]
[project]
name = "cosg"
version = "1.0.4"
description = "Accurate and fast cell marker gene identification with COSG"
requires-python = ">=3.6"
license = { text = "BSD-3-Clause" }
authors = [
{ name = "Min Dai", email = "dai@broadinstitute.org" }
]
maintainers = [
{ name = "Min Dai", email = "dai@broadinstitute.org" }
]
readme = "README.rst"
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Framework :: Jupyter",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Visualization",
]
dependencies = [
"anndata>=0.8",
"scanpy>=1.6.0",
"numpy>=1.17.0",
"pandas>=0.21",
"scikit-learn>=0.21.2",
"scipy>=1.4",
"matplotlib>=3.5.2",
"networkx>=2.8.8",
"typing-extensions",
]
# Project URLs
[project.urls]
Documentation = "https://genecell.github.io/COSG"
Source = "https://github.com/genecell/COSG"
Homepage = "https://genecell.github.io/COSG"
[project.optional-dependencies]
dev = [
"pre-commit" # Static checking
]
[tool.hatch.build.targets.wheel]
packages = ["cosg"]