-
-
Notifications
You must be signed in to change notification settings - Fork 293
/
setup.cfg
49 lines (45 loc) · 1.65 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
# https://setuptools.readthedocs.io/en/latest/userguide/declarative_config.html
[metadata]
name = lightnovel-crawler
version = file: lncrawl/VERSION
author = Sudipto Chandra
author_email = [email protected]
url = https://github.com/dipu-bd/lightnovel-crawler
description = An app to download novels from online sources and generate e-books.
long_description = file: README.pip
long_description_content_type = text/markdown
license = Apache 2.0
license_file = LICENSE
platforms = any
keywords = lightnovel, crawler, lncrawl, novel, pdf, epub, mobi, scraper
classifiers =
Development Status :: 5 - Production/Stable
License :: OSI Approved :: Apache Software License
Natural Language :: English
Intended Audience :: End Users/Desktop
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Topic :: Games/Entertainment
Environment :: Console
project_urls =
"Source Code" = https://github.com/dipu-bd/lightnovel-crawler
"Issue Tracker" = https://github.com/dipu-bd/lightnovel-crawler/issues
"Documentation" = https://github.com/dipu-bd/lightnovel-crawler/blob/master/README.md
[options]
zip_safe = False
python_requires = >= 3.8
include_package_data = True
[options.entry_points]
console_scripts =
lncrawl = lncrawl:main
lightnovel-crawler = lncrawl:main
[flake8]
#select=E9,F63,F7,F82
ignore=E203,E265,E265,W503
indent-size=4
max-line-length=150
exclude = .git, .eggs, __pycache__, tests/, docs/, build/, dist/, res/, venv/, venv-win/, venv36/, venv-linux/
# max-complexity=10