-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
22 lines (20 loc) · 907 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
from distutils.core import setup
version = '0.0.2'
setup(name="arrumator",
version=version,
scripts=['arrumator.py'],
description="HTML/XHML prettifier.",
author="Dirley Rodrigues",
author_email = "[email protected]",
long_description="""HTML/XML prettifier based on BeautifulSoup and Tidy (the latter being optional).""",
classifiers=[#"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Python Software Foundation License",
"Programming Language :: Python",
"Topic :: Text Processing :: Markup :: HTML",
],
install_requires=['beautifulsoup4 == 4.0.1'],
url="http://github.com/ravishi/arrumator",
license="WTFPL",
download_url="http://github.com/ravishi/arrumator/downloads"
)