-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
59 lines (56 loc) · 1.55 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
[build-system]
requires = ['setuptools>=61', 'setuptools-scm[toml]>=6.2']
build-backend = 'setuptools.build_meta'
[project]
name = 'gene_program_evaluation'
dynamic = ['version']
description = 'Evaluation framework for gene programs inferred from single-cell omics data'
readme = 'README.md'
requires-python = '>=3.8'
#license = {file = 'LICENSE'}
classifiers = [
'Development Status :: 1 - Planning',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Scientific/Engineering :: Bio-Informatics',
]
keywords = [
'single-cell',
'bio-informatics',
'gene-programs',
'evaluation'
]
authors = [
{name = 'Revant Gupta'},
]
maintainers = [
{name = 'Revant Gupta', email = '[email protected]'}
]
dependencies = [
'mudata',
'joblib',
'tqdm',
'scipy',
'numpy',
'pandas',
'scikit-learn', # Optional
'scikit-posthocs', # Optional
'seaborn',
'gseapy', # Optional
'lxml' # Optional
#'tangermeme' # Optional
`dash` # Optional
`dash-bootstrap-components` # Optional
#`google-cloud-bigquery` # Optional
`plotly` # Optional -- for interactive plots
#`db_dtypes` # Optional -- for BigQuery
`ipywidgets`
`pyyaml` # Optional -- for Dash app
]