forked from NVIDIA-Merlin/models
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
51 lines (44 loc) · 1.18 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
[metadata]
name = merlin-models
version = 0.0.1
author = NVIDIA Corporation
description = Merlin recommender system models
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/NVIDIA-Merlin/models
classifiers =
Development Status :: 4 - Beta
Programming Language :: Python :: 3
Intended Audience :: Developers
License :: OSI Approved :: Apache Software License
Topic :: Software Development :: Libraries
Topic :: Scientific/Engineering
[options]
# package_dir =
# = src
packages = find:
python_requires = >=3.6
[options.packages.find]
# where = src
[flake8]
max-line-length = 100
ignore = E203,W503
exclude = build,.eggs
[flake8_nb]
max-line-length = 120
ignore = E203,E402,W503
[versioneer]
VCS = git
style = pep440
versionfile_source = merlin/models/_version.py
versionfile_build = merlin/models/_version.py
tag_prefix = v
parentdir_prefix = merlin-models-
[mypy]
ignore_missing_imports = True
no_implicit_optional = True
[codespell]
skip = .*pb2.py,./.git,./.github,./bench,./dist,./docs/build,.*egg-info.*,versioneer.py,*.csv,*.parquet,./.mypy_cache
ignore-words = ./ci/ignore_codespell_words.txt
count =
quiet-level = 3