-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
60 lines (55 loc) · 1.49 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
50
51
52
53
54
55
56
57
58
59
60
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "gaston-spatial"
version = "0.0.1"
authors = [
{ name="Uthsav Chitra", email="uchitra@princeton.edu" },
{ name="Brian Arnold", email="brianjohnarnold@gmail.com" },
{ name="Hirak Sarkar", email="hirak@princeton.edu" },
{ name="Cong Ma", email="congma@princeton.edu" },
{ name="Ben Raphael", email="braphael@cs.princeton.edu" },
]
description = "GASTON: interpretable deep learning model for spatial transcriptomics"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
]
dependencies = [
"torch",
"matplotlib",
"pandas",
"scikit-learn",
"numpy",
"jupyterlab",
"seaborn",
"tqdm",
"scipy"
]
license = {text = "BSD"}
keywords = ["spatial transcriptomics", "neural network", "tissue layer"]
[project.optional-dependencies]
docs = [
"ipython",
"ipywidgets>=8.0.0",
"sphinx>=5.3",
"sphinx-autodoc-annotation",
"sphinx-autodoc-typehints>=1.10.3",
"sphinx_rtd_theme",
"sphinxcontrib-bibtex>=2.3.0",
"sphinxcontrib-spelling>=7.6.2",
"nbsphinx>=0.8.1",
"myst-nb>=0.17.1",
"sphinx_copybutton>=0.5.0",
]
[project.scripts]
gaston = "gaston.__main__:main"
[project.urls]
"Homepage" = "https://github.com/raphael-group/GASTON"
[tool.setuptools.packages.find]
where = ["src"]
include = ["gaston*"]