-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (34 loc) · 758 Bytes
/
setup.py
File metadata and controls
35 lines (34 loc) · 758 Bytes
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
from setuptools import find_packages, setup
setup(
name="solosis",
version="0.5.0",
description="A command line interface for working with single-cell data",
python_requires=">=3.10",
install_requires=[
"click",
"tabulate",
"pandas",
],
extras_require={
"dev": [
"black",
"colorama",
"isort",
"pre-commit",
"pytest",
"pytest-cov",
"pytest-mock",
],
"doc": [
"Sphinx",
"sphinx-rtd-theme",
"sphinx-click",
],
},
packages=find_packages(),
entry_points={
"console_scripts": [
"solosis = solosis.cli:cli",
],
},
)