Skip to content

Commit 2aef0d4

Browse files
author
Harry
committed
fix: adjust package
1 parent 3c0665e commit 2aef0d4

File tree

4 files changed

+358
-2
lines changed

4 files changed

+358
-2
lines changed

Pipfile

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
[[source]]
2+
name = "pypi"
3+
url = "https://pypi.org/simple"
4+
verify_ssl = true
5+
6+
[dev-packages]
7+
8+
[packages]
9+
lxml = "*"
10+
requests = "*"
11+
rdflib = "<5.0.0"
12+
rdflib-jsonld = "*"
13+
mf2py = ">=1.1.0"
14+
six = ">=1.11"
15+
w3lib = "*"
16+
html-text = "*"
17+
pytest = "*"
18+
tox = "*"
19+
flake8 = "*"
20+
bumpversion = "*"
21+
22+
[requires]
23+
python_version = "3.7"

Pipfile.lock

+330
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

extruct/jsonld.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@
22
"""
33
JSON-LD extractor
44
"""
5-
import jstyleson
65
import json
76
import re
7+
import jstyleson
8+
89

910
import lxml.etree
1011

setup.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,9 @@ def get_version():
3434
'mf2py',
3535
'w3lib',
3636
'html-text>=0.5.1',
37-
'six'],
37+
'six',
38+
'jstyleson'
39+
],
3840
extras_require={
3941
'cli': [
4042
'requests',

0 commit comments

Comments
 (0)