This repository has been archived by the owner on Jul 2, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
52 lines (49 loc) · 1.61 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
from setuptools import setup
from setuptools import find_packages
import sys
version = '2.2.dev0'
if sys.version_info < (3, 2):
extra = {
'z3cform': ['z3c.form',
'zope.interface',
'zope.component',
'zope.schema',
],
}
else:
extra = {}
setup(name='htmllaundry',
version=version,
description='Simple HTML cleanup utilities',
long_description=open('README.rst').read() + '\n\n' +
open('CHANGES.rst').read(),
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.4',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Text Processing :: Markup :: HTML',
],
keywords='html clean',
author='Wichert Akkerman',
author_email='[email protected]',
url='',
license='BSD',
packages=find_packages(exclude=['tests']),
include_package_data=True,
zip_safe=False,
install_requires=[
'lxml',
'six',
],
extras_require=extra,
tests_require='nose>=0.10.0b1',
test_suite='nose.collector',
)