-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
38 lines (34 loc) · 965 Bytes
/
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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "tumoroscope-pymc"
authors = [{name = "Joshua Cook", email = "[email protected]"}]
license = {file = "LICENSE"}
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Typing :: Typed",
]
dynamic = ["version", "description"]
dependencies = [
"numpy >= 1.23.0",
"pymc >= 4.0.0",
]
readme = "README.md"
requires-python = ">=3.9"
keywords = ["pymc", "bayesian", "tumoroscope", "model", "spatial-transcriptomics"]
[tool.flit.module]
name = "tumoroscope"
[project.urls]
Home = "https://github.com/jhrcook/tumoroscope-pymc"
[tool.flit.sdist]
include = [
"tumoroscope/",
"README.md",
"README_files/",
"tumoroscope-diagram.jpeg",
"LICENSE"
]
exclude = ["tumoroscope/__pycache__/"]