-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
61 lines (57 loc) · 1.25 KB
/
setup.cfg
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[metadata]
name = scuttle
description = A command-line utility for manipulating h5ad files containing single cell data
author = Phillip Dexheimer
author_email = [email protected]
license = GPLv3
url = https://github.com/pdexheimer/scuttle
classifiers =
Development Status :: 1 - Planning
Environment :: Console
Intended Audience :: Science/Research
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Operating System :: OS Independent
Programming Language :: Python :: 3
Topic :: Scientific/Engineering :: Bio-Informatics
[options]
packages = find:
install_requires =
scanpy > 1.4.0
python-Levenshtein
loompy
rpy2
tzlocal # Unspecified dependency of rpy2.robjects.pandas2ri
colorama
setup_requires =
isort
setuptools_scm
python_requires = >=3.6
[options.entry_points]
console_scripts =
scuttle=scuttle.scuttle:main
[flake8]
exclude = build,env,.eggs
max-line-length = 120
#E701: Multiple statements on one line
per-file-ignores = scuttle/commands/describe.py:E701
ignore =
E121,
E123,
E126,
E226,
E24,
E704,
W503,
W504
select =
C,
E,
F,
W,
B,
Q,
B902
[isort]
line_length = 120
balanced_wrapping = True
skip_glob = env/**