-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
49 lines (46 loc) · 1.35 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
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "sciduck"
version = "0.4.0"
description = "single cell data analyis unification and communication toolkit"
requires-python = ">=3.9"
license-expression = "BSD-3-clause"
authors = [
{name = "Nelson Johansen"},
{name = "Matthew Schmitz"},
{name = "Dan Yuan"},
{name = "Zizhen Yao"},
{name = "Trygve Bakken"},
]
maintainers = [
{name = "Nelson Johansen", email = "[email protected]"},
]
readme = "README.md"
classifiers = [
"License :: OSI Approved :: MIT License",
"Development Status :: 4 - Beta",
"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.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
dependencies = [
"anndata>=0.8",
"numpy>=1.23",
"pandas >=1.5",
"scipy>=1.8",
]
[project.urls]
Source = "https://github.com/AllenInstitute/sciduck"
[tool.hatch.build.targets.wheel]
packages = ["src/sciduck"]