This repository has been archived by the owner on Oct 15, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.cfg
86 lines (81 loc) · 2.11 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[metadata]
name = sgkit-vcf
author = sgkit Developers
license = Apache
description = VCF IO implementations for sgkit
long_description_content_type=text/x-rst
long_description =
**sgkit-vcf** contains block array readers for large-scale genomic data stored as VCF
url = https://github.com/pystatgen/sgkit
classifiers =
Development Status :: 2 - Pre-Alpha
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
Intended Audience :: Science/Research
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Topic :: Scientific/Engineering
[options]
packages = sgkit_vcf
zip_safe = False # https://mypy.readthedocs.io/en/latest/installed_packages.html
include_package_data = True
python_requires = >=3.7
install_requires =
cyvcf2
dask
fsspec
numpy
xarray
setuptools >= 41.2 # For pkg_resources
setup_requires =
setuptools >= 41.2
setuptools_scm
[coverage:report]
fail_under = 100
[flake8]
ignore =
# whitespace before ':' - doesn't work well with black
E203
E231
E402
# line too long - let black worry about that
E501
# do not assign a lambda expression, use a def
E731
# line break before binary operator
W503
[isort]
default_section = THIRDPARTY
known_first_party = sgkit
known_third_party = callee,cyvcf2,dask,fsspec,numpy,pytest,setuptools,xarray,yarl
multi_line_output = 3
include_trailing_comma = True
force_grid_wrap = 0
use_parentheses = True
line_length = 88
[mypy-callee.*]
ignore_missing_imports = True
[mypy-cyvcf2.*]
ignore_missing_imports = True
[mypy-dask.*]
ignore_missing_imports = True
[mypy-fsspec.*]
ignore_missing_imports = True
[mypy-numpy.*]
ignore_missing_imports = True
[mypy-pytest.*]
ignore_missing_imports = True
[mypy-xarray.*]
ignore_missing_imports = True
[mypy-yarl.*]
ignore_missing_imports = True
[mypy-sgkit.*]
ignore_missing_imports = True
[mypy-sgkit_vcf.*]
allow_redefinition = True
[mypy-setuptools]
ignore_missing_imports = True
[mypy-sgkit_vcf.tests.*]
disallow_untyped_defs = False