Diff of /setup.cfg [000000] .. [5d6472]

Switch to unified view

a b/setup.cfg
1
[metadata]
2
name = multivelo
3
version = 0.1.5
4
author = Chen Li
5
author_email = chlseven@umich.edu
6
description = Multi-omic extension of single-cell RNA velocity
7
long_description = file: README.rst
8
url = https://github.com/welch-lab/MultiVelo
9
keywords =
10
    RNA velocity
11
    single-cell
12
    transcriptomics
13
    chromatin
14
    epigenetic
15
    epigenomic
16
    gene regulation
17
    multi-omic
18
    dynamical
19
license = BSD 3-Clause License
20
classifiers =
21
    Development Status :: 4 - Beta
22
    Intended Audience :: Science/Research
23
    License :: OSI Approved :: BSD License
24
    Natural Language :: English
25
    Operating System :: MacOS :: MacOS X
26
    Operating System :: Microsoft :: Windows
27
    Operating System :: POSIX :: Linux
28
    Programming Language :: Python :: 3
29
    Programming Language :: Python :: 3.7
30
    Programming Language :: Python :: 3.8
31
    Programming Language :: Python :: 3.9
32
    Topic :: Scientific/Engineering :: Bio-Informatics
33
    Topic :: Scientific/Engineering :: Visualization
34
35
[options]
36
package_dir =
37
    = src
38
packages = find:
39
include_package_data = True
40
python_requires = >=3.7
41
install_requires =
42
    anndata>=0.7.5
43
    scanpy>=1.5
44
    scvelo>=0.2.3
45
    loompy>=2.0.12
46
    umap-learn>=0.3.10
47
    h5py>=2.10.0
48
    numba>=0.41.0
49
    numpy>=1.17
50
    scipy>=1.4.1
51
    pandas>=0.23
52
    scikit-learn>=0.23.0
53
    matplotlib>=3.3.0
54
    seaborn>=0.11.0
55
    tqdm
56
    joblib
57
    ipywidgets<=7.7.1
58
59
[options.package_data]
60
* = neural_nets/*
61
62
[options.packages.find]
63
where = src
64
exclude =
65
    tests
66
    multivelo_demo
67
    docs