forked from skmediate/skmediate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
119 lines (106 loc) · 2.71 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
[aliases]
test = pytest
[tool:pytest]
addopts = --doctest-modules
# Directories that are not visited by pytest collector:
norecursedirs = *.egg .eggs dist build docs .tox .git __pycache__
doctest_optionflags = NUMBER NORMALIZE_WHITESPACE IGNORE_EXCEPTION_DETAIL
[metadata]
name = skmediate
url = https://skmediate.github.io/skmediate
download_url = https://github.com/skmediate/skmediate
author = Manjari Narayan
author_email =
maintainer = Manjari Narayan
maintainer_email = richiehalford@gmail.com
classifiers =
Development Status :: 3 - Alpha
Environment :: Console
Intended Audience :: Science/Research
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: Python
Topic :: Scientific/Engineering
license = BSD License
description = skmediate: mediation analysis
long_description = file:README.md
long_description_content_type = text/markdown
platforms = OS Independent
[options]
setup_requires =
setuptools_scm
python_requires = >=3.6
install_requires =
matplotlib==3.3.0
numpy==1.19.1
scikit-learn==0.23.2
scipy==1.5.2
tqdm
zip_safe = False
include_package_data = True
packages = find:
[options.extras_require]
dev =
black==20.8b1
flake8==3.8.3
numpydoc==1.1.0
pre-commit==2.7.1
pydocstyle==5.1.1
pytest-cov==2.10.1
pytest-xdist[psutil]==2.1.0
pytest==6.0.1
sphinx==3.2.1
sphinx-gallery==0.8.1
sphinx-rtd-theme==0.5.0
myst-nb
maint =
rapidfuzz==0.12.2
[pydocstyle]
convention = numpy
match = (?!_version).*\.py
match-dir = skmediate
[flake8]
max-line-length = 88
select = C,E,F,W,B,B950
ignore = E501,N802,N806,W503,E203
exclude = setup.py,build,dist,docs,.ipynb_checkpoints
# All configuration for plugins and other utils is defined here.
# Read more about `setup.cfg`:
# https://docs.python.org/3/distutils/configfile.html
[darglint]
# darglint configuration:
# https://github.com/terrencepreilly/darglint
strictness = long
docstring_style = google
[mypy]
# mypy configurations: http://bit.ly/2zEl9WI
python_version = 3.7
pretty = True
allow_redefinition = False
check_untyped_defs = True
disallow_any_generics = True
disallow_incomplete_defs = True
ignore_missing_imports = True
implicit_reexport = False
strict_optional = True
strict_equality = True
no_implicit_optional = True
warn_no_return = True
warn_unused_ignores = True
warn_redundant_casts = True
warn_unused_configs = True
warn_return_any = True
warn_unreachable = True
show_error_codes = True
show_column_numbers = True
show_error_context = True
# plugins = pydantic.mypy, sqlmypy
# [pydantic-mypy]
# init_typed = True
# warn_untyped_fields = True
# Extra options:
addopts =
--strict
--tb=short
--doctest-modules
--doctest-continue-on-failure