-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.cfg
72 lines (68 loc) · 2.04 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
[metadata]
name = nhl
version = file: nhl/version.txt
author = Matt Hostetter
author_email = [email protected]
home_page = https://github.com/mhostetter/nhl
description = A Python 3 API for NHL game and player stats
long_description = file: README.md
license = MIT
license_file = LICENSE
keywords = nhl, hockey, sports, stats, analysis, api
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Developers,
Intended Audience :: Education,
Intended Audience :: Science/Research,
License :: OSI Approved :: MIT License
Operating System :: MacOS :: MacOS X
Operating System :: Microsoft :: Windows
Operating System :: POSIX :: Linux
Programming Language :: Python :: 3.7,
Programming Language :: Python :: 3.8,
Programming Language :: Python :: 3.9,
Programming Language :: Python :: 3.10,
Programming Language :: Python :: 3 :: Only,
Topic :: Software Development :: Libraries :: Python Modules
project_urls =
Source = https://github.com/mhostetter/nhl
Issues = https://github.com/mhostetter/nhl/issues
Documentation = https://nhl.readthedocs.io/en/stable/
Discuss = https://github.com/mhostetter/nhl/discussions
Changelog = https://nhl.readthedocs.io/en/stable/release-notes.html
Twitter = https://twitter.com/nhl_py
[options]
packages = nhl
test_suite = tests
python_requires = >=3.7
install_requires =
requests
beautifulsoup4
typing_extensions # Needed for use of Literal in type hints for Python 3.7
[options.package_data]
nhl = *.txt
[bdist_wheel]
universal = 0
[pylint]
disable =
missing-module-docstring,
missing-function-docstring,
line-too-long,
too-many-lines,
bad-whitespace,
invalid-name,
redefined-builtin,
no-else-return,
fixme,
too-many-arguments,
too-many-locals,
too-many-instance-attributes,
too-many-ancestors,
consider-using-enumerate,
unneeded-not,
global-statement,
invalid-unary-operand-type,
eval-used,
too-many-branches,
protected-access
min-similarity-lines = 100