-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
45 lines (40 loc) · 1.34 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "MultiOmicsCellSim"
version = "0.0.1"
description = "A simulator for generating multi-modal biological data."
readme = "README.md"
readme-content-type = "text/markdown"
license = { text = "GPL-3.0" }
authors = [
{ name = "Edoardo Giacomello", email = "[email protected]" },
{ name = "Diya Srivastava", email = "[email protected]" },
{ name = "Florian Jug", email = "[email protected]" },
]
requires-python = ">=3.7"
keywords = ["multi-omics", "simulation", "microscopy", "single-cell", "spatial omics", "virtual phantom"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
dependencies = [
"matplotlib",
"numpy<2.0",
"shapely",
"shapelysmooth",
"pydantic",
"scipy"
]
[project.urls]
"Homepage" = "https://github.com/juglab/MultiOmicsCellSim"
"Documentation" = "https://github.com/juglab/MultiOmicsCellSim/docs"
"Repository" = "https://github.com/juglab/MultiOmicsCellSim"
[tool.hatch.build.targets.sdist]
include = ["multiomicscellsim", "README.md", "LICENSE"]