forked from wichert/htmllaundry
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
53 lines (50 loc) · 1.66 KB
/
setup.py
File metadata and controls
53 lines (50 loc) · 1.66 KB
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
53
from setuptools import setup
from setuptools import find_packages
import sys
version = '2.3.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.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Text Processing :: Markup :: HTML',
],
keywords='html clean',
author='Wichert Akkerman',
author_email='wichert@wiggy.net',
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',
)