1+ [build-system ]
2+ requires = [" setuptools>=61.0" , " wheel" ]
3+ build-backend = " setuptools.build_meta"
4+
5+ [project ]
6+ name = " scprep"
7+ dynamic = [" version" ]
8+ description = " scprep"
9+ authors = [
10+ {
name =
" Scott Gigante, Daniel Burkhardt and Jay Stanley, Yale University" ,
email =
" [email protected] " }
11+ ]
12+ license = {text = " Yale License" }
13+ readme = " README.rst"
14+ requires-python = " >=3.9"
15+ dependencies = [
16+ " numpy>=1.26.0" ,
17+ " scipy>=1.13.0" ,
18+ " scikit-learn>=1.5.0" ,
19+ " decorator>=4.3.0" ,
20+ " pandas>=2.0.0" ,
21+ " packaging" ,
22+ ]
23+ keywords = [
24+ " big-data" ,
25+ " computational-biology" ,
26+ ]
27+ classifiers = [
28+ " Development Status :: 4 - Beta" ,
29+ " Environment :: Console" ,
30+ " Framework :: Jupyter" ,
31+ " Intended Audience :: Developers" ,
32+ " Intended Audience :: Science/Research" ,
33+ " Natural Language :: English" ,
34+ " Operating System :: MacOS :: MacOS X" ,
35+ " Operating System :: Microsoft :: Windows" ,
36+ " Operating System :: POSIX :: Linux" ,
37+ " Programming Language :: Python :: 3" ,
38+ " Programming Language :: Python :: 3.9" ,
39+ " Programming Language :: Python :: 3.10" ,
40+ " Programming Language :: Python :: 3.11" ,
41+ " Programming Language :: Python :: 3.12" ,
42+ " Programming Language :: Python :: 3.13" ,
43+ " Topic :: Scientific/Engineering :: Bio-Informatics" ,
44+ ]
45+
46+ [tool .setuptools .dynamic ]
47+ version = {attr = " scprep.version.__version__" }
48+
49+ [project .urls ]
50+ Homepage = " https://github.com/KrishnaswamyLab/scprep"
51+ Repository = " https://github.com/KrishnaswamyLab/scprep"
52+ Download = " https://github.com/KrishnaswamyLab/scprep/archive/v{version}.tar.gz"
53+
54+ [project .optional-dependencies ]
55+ optional = [
56+ " fcsparser<0.2.5" ,
57+ " tables" ,
58+ " h5py" ,
59+ " anndata" ,
60+ " anndata2ri>=1.0.6" ,
61+ ]
62+ test = [
63+ " nose" ,
64+ " nose2" ,
65+ " coverage" ,
66+ " coveralls" ,
67+ " parameterized" ,
68+ " requests" ,
69+ " packaging" ,
70+ " mock" ,
71+ " h5py" ,
72+ " matplotlib>=3.0" ,
73+ " rpy2>=3.4.3" ,
74+ " black" ,
75+ " fcsparser<0.2.5" ,
76+ " tables" ,
77+ " h5py" ,
78+ " anndata" ,
79+ " anndata2ri>=1.0.6" ,
80+ ]
81+ doc = [
82+ " sphinx>=2.2,<2.4" ,
83+ " sphinxcontrib-napoleon" ,
84+ " ipykernel" ,
85+ " nbsphinx" ,
86+ " autodocsumm" ,
87+ ]
88+
89+ [tool .setuptools .packages .find ]
0 commit comments