Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

NEXTPY-569 -- Make pdfquery compatible with Python 3.9 and 3.11 #91

Open
wants to merge 17 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add test and documentation packages
  • Loading branch information
Koen de Leijer committed May 3, 2021
commit 9dca60f6e62b11b26956e910b321fd6bba32b7aa
1 change: 1 addition & 0 deletions README.rst
Original file line number Diff line number Diff line change
@@ -22,6 +22,7 @@ Installation
============

``pip install pdfquery``.
``pip install -e .[test,flake8,docs,release]``

Quick Start
===========
17 changes: 16 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -15,6 +15,15 @@
except ImportError:
pass


TESTS_REQUIRE = [
'pytest',
'tox',
'isort',
'freezegun',
'pre-commit'
]

setup(
name='pdfquery',
version='0.4.3',
@@ -43,6 +52,12 @@
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
],

extras_require=dict(
test=TESTS_REQUIRE,
pep8=['flake8'],
coverage=['pytest-cov'],
docs=['sphinx'],
release=['zest.releaser'],
),
test_suite=test_suite,
)