forked from mozilla/bleach
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·68 lines (58 loc) · 2.05 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#!/usr/bin/env python
import io
import os
import re
from setuptools import setup, find_packages
install_requires = [
'packaging',
'six>=1.9.0',
# html5lib requirements
'webencodings',
]
def get_long_desc():
with io.open('README.rst', encoding='utf-8') as fp:
desc = fp.read()
desc += '\n\n'
with io.open('CHANGES', encoding='utf-8') as fp:
desc += fp.read()
return desc
def get_version():
fn = os.path.join('bleach', '__init__.py')
vsre = r"""^__version__ = ['"]([^'"]*)['"]"""
with io.open(fn, encoding='utf-8') as fp:
version_file = fp.read()
return re.search(vsre, version_file, re.M).group(1)
setup(
name='bleach',
version=get_version(),
description='An easy safelist-based HTML-sanitizing tool.',
long_description=get_long_desc(),
maintainer='Will Kahn-Greene',
maintainer_email='[email protected]',
url='https://github.com/mozilla/bleach',
license='Apache Software License',
packages=find_packages(),
include_package_data=True,
package_data={'': ['README.rst']},
zip_safe=False,
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*',
install_requires=install_requires,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)