|
| 1 | +[tool.poetry] |
| 2 | +authors = [ "Romain Lopez <[email protected]>", "Adam Gayoso <[email protected]", "Galen Xing <[email protected]>"] |
| 3 | +classifiers = [ |
| 4 | + "Development Status :: 4 - Beta", |
| 5 | + "Intended Audience :: Science/Research", |
| 6 | + "License :: OSI Approved :: MIT License", |
| 7 | + "Natural Language :: English", |
| 8 | + "Programming Language :: Python :: 3.6", |
| 9 | + "Programming Language :: Python :: 3.7", |
| 10 | + "Operating System :: MacOS :: MacOS X", |
| 11 | + "Operating System :: Microsoft :: Windows", |
| 12 | + "Operating System :: POSIX :: Linux", |
| 13 | + "Topic :: Scientific/Engineering :: Bio-Informatics", |
| 14 | +] |
| 15 | +description = "Deep generative models for end-to-end analysis of single-cell omics data." |
| 16 | +documentation = "https://scvi.readthedocs.io/en/stable/" |
| 17 | +homepage = "https://github.com/YosefLab/scvi-tools" |
| 18 | +license = "MIT" |
| 19 | +name = "scvi-tools" |
| 20 | +packages = [ |
| 21 | + {include = "scvi"}, |
| 22 | +] |
| 23 | +readme = "README.rst" |
| 24 | +version = "0.6.7" |
| 25 | + |
| 26 | +[tool.poetry.dependencies] |
| 27 | +anndata = "^0.7.4" |
| 28 | +black = {version = "^20.8b1", optional = true} |
| 29 | +codecov = {version = "^2.0.8", optional = true} |
| 30 | +flake8 = {version = "^3.7.7", optional = true} |
| 31 | +h5py = "^2.9.0" |
| 32 | +hyperopt = "^0.1.2" |
| 33 | +ipython = {version = "^7.1.1", optional = true} |
| 34 | +ipywidgets = "*" |
| 35 | +jupyter = {version = "^1.0", optional = true} |
| 36 | +leidenalg = {version = "*", optional = true} |
| 37 | +loompy = {version = "^3.0.6", optional = true} |
| 38 | +nbconvert = {version = "^5.4.0", optional = true} |
| 39 | +nbformat = {version = "^4.4.0", optional = true} |
| 40 | +nbsphinx = {version = "*", optional = true} |
| 41 | +nbsphinx-link = {version = "*", optional = true} |
| 42 | +numba = "^0.41.0" |
| 43 | +numpy = "^1.17.0" |
| 44 | +pandas = "^1.0" |
| 45 | +pre-commit = {version = "^2.7.1", optional = true} |
| 46 | +pydata-sphinx-theme = {version = "^0.4.0", optional = true} |
| 47 | +pytest = {version = "^4.4", optional = true} |
| 48 | +python = "^3.6" |
| 49 | +python-igraph = {version = "*", optional = true} |
| 50 | +rich = "^6.2.0" |
| 51 | +scanpy = {version = "^1.6", optional = true} |
| 52 | +scanpydoc = {version = "^0.5", optional = true} |
| 53 | +scikit-learn = "^0.21.2" |
| 54 | +sphinx = {version = "^3.0", optional = true} |
| 55 | +torch = "^1.3" |
| 56 | +tqdm = "^4.31.1" |
| 57 | +typing_extensions = {version = "*", python = "<3.8"} |
| 58 | +xlrd = "^1.2.0" |
| 59 | + |
| 60 | +[tool.poetry.extras] |
| 61 | +dev = ["black", "pytest", "flake8", "codecov", "scanpy", "loompy", "jupyter", "nbformat", "nbconvert", "pre-commit"] |
| 62 | +docs = ["sphinx", "scanpydoc", "nbsphinx", "nbsphinx-link", "ipython", "pydata-sphinx-theme", "typing_extensions"] |
| 63 | +tutorials = ["scanpy", "leidenalg", "python-igraph", "loompy"] |
| 64 | + |
| 65 | +[tool.poetry.dev-dependencies] |
| 66 | + |
| 67 | +[build-system] |
| 68 | +build-backend = "poetry.masonry.api" |
| 69 | +requires = ["poetry>=1.0"] |
0 commit comments