Skip to content

Commit

Permalink
fix: adjust package
Browse files Browse the repository at this point in the history
  • Loading branch information
Harry committed May 15, 2020
1 parent 3c0665e commit 2aef0d4
Show file tree
Hide file tree
Showing 4 changed files with 358 additions and 2 deletions.
23 changes: 23 additions & 0 deletions Pipfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true

[dev-packages]

[packages]
lxml = "*"
requests = "*"
rdflib = "<5.0.0"
rdflib-jsonld = "*"
mf2py = ">=1.1.0"
six = ">=1.11"
w3lib = "*"
html-text = "*"
pytest = "*"
tox = "*"
flake8 = "*"
bumpversion = "*"

[requires]
python_version = "3.7"
330 changes: 330 additions & 0 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion extruct/jsonld.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@
"""
JSON-LD extractor
"""
import jstyleson
import json
import re
import jstyleson


import lxml.etree

Expand Down
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ def get_version():
'mf2py',
'w3lib',
'html-text>=0.5.1',
'six'],
'six',
'jstyleson'
],
extras_require={
'cli': [
'requests',
Expand Down

0 comments on commit 2aef0d4

Please sign in to comment.