-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
83 lines (74 loc) · 2.08 KB
/
pyproject.toml
File metadata and controls
83 lines (74 loc) · 2.08 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=42", "wheel", "setuptools_scm[toml]>=3.4"]
[dependency-groups]
dev = [
"ipykernel>=6.30.0",
"mkdocs>=1.6.1",
"mkdocs-jupyter>=0.25.1",
"mkdocs-material>=9.7.0",
"mkdocstrings[python]>=1.0.0",
"pytest>=8.4.1",
"pytest-cov>=7.0.0",
"python-markdown-math>=0.9",
"ruff>=0.12.7"
]
[project]
authors = [
{name = "Lilly Tatka", email = "ltatka@talus.bio"},
{name = "William E Fondrie", email = "wfondrie@talus.bio"},
{name = "Carolyn Allen", email = "callen@talus.bio"}
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Bio-Informatics"
]
dependencies = [
"numpy>=2.0",
"pandas",
"scipy>=1.7.1",
"statsmodels",
"requests",
"numba",
"seaborn",
"biopython",
"cloudpathlib[s3]>=0.23.0",
"tqdm>=4.67.1"
]
description = "Gene ontology enrichment analysis using protein expression."
dynamic = ["version"]
license = {text = "Apache 2.0"}
name = "gopher-enrich"
readme = "README.md"
requires-python = ">=3.12,<3.14"
[project.optional-dependencies]
docs = [
"numpydoc>=1.0.0",
"sphinx-argparse>=0.2.5",
"pydata-sphinx-theme>=0.4.3",
"nbsphinx>=0.7.1",
"ipykernel>=5.3.0",
"recommonmark>=0.5.0"
]
[project.scripts]
gopher = "gopher.gopher:main"
[project.urls]
"Bug Tracker" = "https://github.com/TalusBio/gopher/issues"
"Discussion Board" = "https://github.com/TalusBio/gopher/discussions"
"Documentation" = "https://TalusBio.github.io/gopher"
"Homepage" = "https://github.com/TalusBio/gopher"
[tool.ruff]
line-length = 79
[tool.ruff.lint]
# D213 Multi-line docstring summary should start at the second lin
# D203 1 blank line required before class docstring
# D100 Missing docstring in public module
# D401 First line of docstring should be in imperative mood
ignore = ["D213", "D203", "D100", "D401"]
select = ["E", "F", "W", "C", "I", "D", "UP", "N", "T20"]
[tool.ruff.lint.per-file-ignores]
"*tests/*.py" = ["ANN", "N806", "C408"]
"__init__.py" = ["F401", "D104"]
[tool.setuptools_scm]