-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
43 lines (41 loc) · 1.32 KB
/
setup.py
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
from setuptools import find_packages, setup
# python -m build
# python -m twine upload --repository pypi dist/* --verbose
setup(
name="marcopolo-pytorch",
packages=find_packages(exclude=[]),
include_package_data=True,
version="1.0.9",
description="MarcoPolo - Pytorch",
author="Chanwoo Kim",
long_description_content_type="text/markdown",
url="https://github.com/chanwkimlab/MarcoPolo",
keywords=["single-cell", "bioinformatics", "pytorch"],
install_requires=[
"tqdm",
"einops>=0.3",
"numpy>=1.19.2",
"torch>=1.4.0",
"pandas>=1.2.0",
"scikit-learn>=0.24.1",
"scipy>=1.6.1",
"matplotlib>=3.3.0",
"seaborn>=0.11.1",
"Jinja2>=2.11.2",
"anndata>=0.7.4",
"rpy2>=3.4.2",
"ipywidgets>=7.5.1",
"scanpy>=1.9.0",
],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: Other/Proprietary License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
)