forked from RDFLib/pyrdfa3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (35 loc) · 1.08 KB
/
setup.py
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
from setuptools import setup
install_requires=[
"rdflib",
"html5lib",
]
setup(name="pyRdfa3",
description="pyRdfa Libray",
version="3.5.3+cb.1",
author="Ivan Herman",
author_email="[email protected]",
maintainer="Ivan Herman",
maintainer_email="[email protected]",
install_requires=install_requires,
packages=['pyRdfa',
'pyRdfa.transform',
'pyRdfa.extras',
'pyRdfa.rdfs',
'pyRdfa.host',
'pyRdfaExtras',
'pyRdfaExtras.extras',
'pyRdfaExtras.serializers'
],
entry_points={
'rdf.plugins.parser': [
'rdfa = pyRdfa.rdflibparsers:RDFaParser',
'rdfa1.0 = pyRdfa.rdflibparsers:RDFa10Parser',
'rdfa1.1 = pyRdfa.rdflibparsers:RDFaParser',
'application/svg+xml = pyRdfa.rdflibparsers:RDFaParser',
'application/xhtml+xml = pyRdfa.rdflibparsers:RDFaParser',
'hturtle = pyRdfa.rdflibparsers:HTurtleParser',
'html = pyRdfa.rdflibparsers:StructuredDataParser',
'html/text = pyRdfa.rdflibparsers:StructuredDataParser'
],
}
)