-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
201 lines (170 loc) · 4.08 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
[metadata]
name = kiara_plugin.topic_modelling_dhbenelux
description = A set of modules (and pipelines) for Kiara.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/DHARPA-Project/kiara_plugin.topic_modelling_dhbenelux
author = Mariella De Crouy
author_email = mariella.decrouychanel@uni.lu
license = MPL-2.0
license_file = LICENSE
platforms = any
classifiers =
Development Status :: 3 - Alpha
License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
[options]
packages = find_namespace:
install_requires =
kiara>=0.4.4
kiara_plugin.core_types>=0.4.7
kiara_plugin.tabular>=0.4.6
kiara_plugin.language_processing>=0.4.3
streamlit>=1.9.0
python_requires = >=3.8
include_package_data = True
package_dir =
=src
setup_requires =
setuptools_scm
setuptools_scm_git_archive
zip_safe = False
[options.entry_points]
kiara.data_types =
topic_modelling_dhbenelux = kiara_plugin.topic_modelling_dhbenelux:find_data_types
kiara.model_classes =
topic_modelling_dhbenelux = kiara_plugin.topic_modelling_dhbenelux:find_model_classes
kiara.modules =
topic_modelling_dhbenelux = kiara_plugin.topic_modelling_dhbenelux:find_modules
kiara.pipelines =
topic_modelling_dhbenelux = kiara_plugin.topic_modelling_dhbenelux:find_pipelines
[options.extras_require]
dev_documentation =
icecream>=2.1.0
mike>=1.0.1
mkdocs-awesome-pages-plugin>=2.5.0
mkdocs-literate-nav>=0.4.0
mkdocs-macros-plugin>=0.5.0,<0.6.0
mkdocs-material>=8.0.0
mkdocs-section-index>0.3.0
mkdocstrings-python-legacy
mknotebooks>=0.7.0
mkdocs-gen-files>=0.3.1;python_version>='3.7'
dev_testing =
coveralls>=3.2.0
flake8>=3.8.4
mypy>=0.800
pytest>=6.2.2
pytest-cov>=2.11.1
tox>=3.21.2
types-pkg_resources
types-python-dateutil
dev_utils =
black
cruft>=2.6.0
flake8>=3.8.4
ipython
pip-licenses>=3.3.0
pp-ez>=0.2.0
pre-commit>=2.9.3
setup-cfg-fmt>=1.16.0
watchgod>=0.6
wheel
[options.packages.find]
where = src
exclude =
tests
[aliases]
build = bdist_wheel
release = build upload
[bdist_wheel]
universal = 1
[devpi:upload]
no-vcs = 1
formats = sdist, bdist_wheel
[tool:pytest]
addopts =
--verbose
norecursedirs =
dist
build
.tox
testpaths = tests
[tox:tox]
envlist = py36, py37, py38, flake8
[testenv]
setenv =
PYTHONPATH = {toxinidir}
deps =
-e{toxinidir}[dev_testing,all]
install_command = pip install --pre --extra-index-url https://pypi.fury.io/dharpa/ {opts} {packages}
commands =
pip install -U pip
py.test --basetemp={envtmpdir}
[testenv:flake8]
basepython = python
deps =
-e{toxinidir}[dev_testing,all]
flake8
install_command = pip install --pre --extra-index-url https://pypi.fury.io/dharpa/ {opts} {packages}
commands = flake8 src
[coverage:run]
branch = True
source = kiara_plugin.topic_modelling_dhbenelux
[coverage:paths]
source =
src/
*/site-packages/
[coverage:report]
exclude_lines =
pragma: no cover
def __repr__
if self\.debug
raise AssertionError
raise NotImplementedError
if 0:
if __name__ == .__main__.:
[flake8]
exclude =
.tox
build
dist
.eggs
docs/conf.py
.git
__pycache__
ignore = F405, W503, E501
max-line-length = 88
[isort]
profile = black
[mypy]
mypy_path =
src/
namespace_packages = true
plugins = pydantic.mypy
[mypy-appdirs]
ignore_missing_imports = true
[mypy-asyncclick]
ignore_missing_imports = true
[mypy-devtools]
ignore_missing_imports = true
[mypy-gensim.*]
ignore_missing_imports = true
[mypy-pandas]
ignore_missing_imports = true
[mypy-nltk.*]
ignore_missing_imports = true
[mypy-it_core_news_sm]
ignore_missing_imports = true
[mypy-networkx.*]
ignore_missing_imports = true
[mypy-pyarrow.*]
ignore_missing_imports = true
[mypy-ruamel.*]
ignore_missing_imports = true
[mypy-uvloop]
ignore_missing_imports = true