FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
html5lib-python/setup.py at python3-old · moben/html5lib-python · GitHub
moben
/
html5lib-python
Public
forked from
html5lib/html5lib-python
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
html5lib-python
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
43 lines (39 loc) · 1.59 KB
Breadcrumbs
html5lib-python
/
setup.py
Copy path
File metadata and controls
43 lines (39 loc) · 1.59 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
try
:
from
setuptools
import
setup
except
ImportError
:
from
distutils
.
core
import
setup
import
os
long_description
=
"""HTML parser designed to follow the WHATWG HTML5
specification. The parser is designed to handle all flavours of HTML and
parses invalid documents using well-defined error handling rules compatible
with the behaviour of major desktop web browsers.
Output is to a tree structure; the current release supports output to
DOM, ElementTree, lxml and BeautifulSoup tree formats as well as a
simple custom format"""
classifiers
=
[
'Development Status :: 4 - Beta'
,
'Intended Audience :: Developers'
,
'License :: OSI Approved :: MIT License'
,
'Operating System :: OS Independent'
,
'Programming Language :: Python'
,
'Topic :: Software Development :: Libraries :: Python Modules'
,
'Topic :: Text Processing :: Markup :: HTML'
],
setup
(
name
=
'html5lib'
,
version
=
'0.11'
,
url
=
'http://code.google.com/p/html5lib/'
,
license
=
"MIT License"
,
description
=
'HTML parser based on the WHAT-WG Web Applications 1.0'
'("HTML5") specifcation'
,
long_description
=
long_description
,
classifiers
=
classifiers
,
maintainer
=
'James Graham'
,
maintainer_email
=
'jg307@cam.ac.uk'
,
packages
=
[
'html5lib'
]
+
[
'html5lib.'
+
name
for
name
in
os
.
listdir
(
os
.
path
.
join
(
'src'
,
'html5lib'
))
if
os
.
path
.
isdir
(
os
.
path
.
join
(
'src'
,
'html5lib'
,
name
))
and
not
name
.
startswith
(
'.'
)],
package_dir
=
{
'html5lib'
:
'src/html5lib'
},
test_suite
=
"tests.buildTestSuite"
,
tests_require
=
[
'simplejson'
]
)
Back
|
FazBrowse Home
|
New Git URL