-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
23 lines (22 loc) · 1011 Bytes
/
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
from distutils.core import setup
setup(
name = "htmldom",
packages = ['htmldom'],
version = '2.0',
description = 'HTML parser which can be used for web-scraping applications',
long_description = 'htmldom parses the HTML file and provides methods for iterating and searching and modifying the parse tree in a similar way as Jquery',
author = 'Bhimsen.S.Kulkarni',
author_email = '[email protected]',
url = 'http://pypi.python.org/',
license = 'FreeBSD License',
platforms = 'Linux',
classifiers = [
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 3.2',
'License :: OSI Approved :: BSD License ',
'Operating System :: POSIX :: Linux',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Text Processing :: Markup :: HTML'
]);