-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (37 loc) · 906 Bytes
/
Copy pathpyproject.toml
File metadata and controls
41 lines (37 loc) · 906 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
[project]
name = "geotool"
version = "0.1.0"
description = "Search, download, and harmonize GEO expression cohorts"
requires-python = ">=3.9"
dependencies = [
"GEOparse>=2.0.3",
"requests>=2.28",
"pandas>=1.5",
"click>=8.1",
"openpyxl>=3.1",
"tabulate>=0.9",
"anthropic>=0.69",
"pydantic>=2.0",
# required by geotool/_vendor/inmoose (vendored subset of InMoose's
# limma port -- see geotool/_vendor/inmoose/README.md), which
# geotool.diffexp delegates to.
"scipy>=1.16",
"patsy>=1.0",
"statsmodels>=0.14.5",
"matplotlib>=3.7",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"requests-mock>=1.10",
]
notebook = [
"jupyter>=1.0",
]
[project.scripts]
geotool = "geotool.cli:main"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["geotool*"]