-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (26 loc) · 805 Bytes
/
pyproject.toml
File metadata and controls
29 lines (26 loc) · 805 Bytes
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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "scTransient"
version = "0.0.0"
description = "Package for detecting transient events in pseudotime"
readme = "README.md"
requires-python = ">=3.9"
license = { text = "GPLv3" }
dynamic = ["dependencies"]
authors = [
{ name = "Alexandre Hutton", email = "50920802+AlexandreHutton@users.noreply.github.com" }
]
keywords = ["single-cell", "pseudotime", "transient", "trajectory inference"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GPLv3",
"Operating System :: OS Independent",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["scTransient*"]
exclude = ["tests*"]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}