-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (37 loc) · 970 Bytes
/
pyproject.toml
File metadata and controls
42 lines (37 loc) · 970 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
30
31
32
33
34
35
36
37
38
39
40
41
42
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "deepcell-types"
version = "0.0.1"
authors = [
{ name="Xuefei (Julie) Wang", email="xwang3@caltech.edu" },
]
description = "A generalized cell phenotyping model for spatial proteomics"
readme = "README.md"
requires-python = "~=3.10"
dependencies = [
"requests",
"pyyaml",
"numpy",
"scikit-image",
"tqdm",
"torch",
]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
license = {file = "LICENSE"}
[project.urls]
"Source Code" = "https://github.com/vanvalenlab/deepcell-types"
"Issue Tracker" = "https://github.com/vanvalenlab/deepcell-types/issues"
[tool.setuptools]
packages = [
'deepcell_types',
'deepcell_types.dct_kit',
'deepcell_types.utils'
]
include-package-data = true
[tool.setuptools.package-data]
deepcell_types = ["dct_kit/config/*.yaml", "dct_kit/config/*.json"]