-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
86 lines (79 loc) · 1.76 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 = imdb_rating_classifier
version = attr: imdb_rating_classifier.__version__
description = An application that scrapes data from IMDB and adjusts rating based on some rulesets.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/marouenes/imdb-rating-classifier
author = Marouane Skandaji
author_email = [email protected]
license = MIT
license_file = LICENSE
classifiers =
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: Implementation :: CPython
project_urls =
Source Code = https://github.com/marouenes/imdb-rating-classifier
Bug Tracker = https://github.com/marouenes/imdb-rating-classifier/issues
[options]
packages = find:
install_requires =
Jinja2>=3.1.2
beautifulsoup4>=4.10.0
click==8.1.3
pandas==1.5.2
requests>=2.28.1
python_requires = >=3.8
include_package_data = True
[options.packages.find]
exclude =
tests*
testing*
data/*
docs/*
[options.entry_points]
console_scripts =
imdb-rating-classifier = imdb_rating_classifier.generate:main
[options.extras_require]
build =
build
sphinx
twine
wheel
dev =
black
build
flake8
isort
pre-commit
pytest
pytest-cov
pytest-mock
sphinx
twine
wheel
qa =
black
flake8
isort
pre-commit
tests =
pytest
pytest-cov
pytest-mock
[bdist_wheel]
python-tag = py3
[isort]
multi_line_output = 3
include_trailing_comma = True
force_grid_wrap = 0
use_parentheses = True
line_length = 99
[flake8]
max-line-length = 99
ignore = E203, E266, E501, W503
max-complexity = 18
select = B,C,E,F,W,T4,B9