This repository has been archived by the owner on May 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
107 lines (96 loc) · 2.07 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
[metadata]
name = rdltr
url = https://github.com/SamR1/rdltr
version = file: VERSION
description = simple read-it-later app
long_description = file: README.md
long_description_content_type = text/markdown
license = GNU General Public License v3.0
author = SamR1
platforms = linux
classifiers =
Development Status :: 4 - Beta
Framework :: Flask
Intended Audience :: Developers
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Operating System :: POSIX :: Linux
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: JavaScript
Topic :: Internet :: WWW/HTTP
project_urls =
Documentation = https://samr1.github.io/rdltr
[options]
packages = find:
include_package_data = True
python_requires = >=3.8.1
zip_safe = false
setup_requires = pytest-runner
install_requires =
beautifulsoup4==4.12.3
Flask==3.0.3
Flask-Bcrypt==1.0.1
Flask-Migrate==4.0.7
Flask-SQLAlchemy==3.0.5
gunicorn==22.0.0
lxml[html_clean]==5.2.1
PyJWT==2.8.0
readability-lxml==0.8.1
requests==2.31.0
sqlalchemy==1.4.52
tests_require =
black
flake8
pytest-black
pytest-cov
pytest-html
pytest-isort
pytest-mypy
pytest-selenium
types-requests
[options.extras_require]
test =
bandit
pytest-black
pytest-cov
pytest-flake8
pytest-html==3.2.0
pytest-isort
pytest-mypy
pytest-selenium
selenium==4.9.0
types-requests
doc =
sphinx
sphinx_rtd_theme
recommonmark
[options.package_data]
rdltr =
VERSION
migrations/*
dist/*
dist/static/*
dist/static/css/*
dist/static/js/*
[options.packages.find]
exclude =
rdltr.tests
rdltr.tests.tests
[options.entry_points]
console_scripts =
rdltr = rdltr.__main__:main
rdltr_db = rdltr.__main__:upgrade_db
[aliases]
test = pytest
[tool:pytest]
norecursedirs = build dist .cache .eggs .git .venv migrations
[coverage:run]
omit = .*
[coverage:report]
omit =
rdltr/migrations/*
rdltr/tests/*