-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
32 lines (25 loc) · 844 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
24
25
26
27
28
29
30
31
32
from setuptools import find_packages, setup
REQUIREMENTS = [
'beautifulsoup4']
PACKAGES = [
'pha']
CLASSIFIERS = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Testing',
'Topic :: Utilities']
setup(
name='python-html-assert',
version='0.2.1.1',
packages=find_packages(),
install_requires=REQUIREMENTS,
author='Robert Cox',
author_email='[email protected]',
description='partial matching of html using a tree-based specification',
license='MIT License',
url='https://github.com/robjohncox/python-html-assert',
classifiers=CLASSIFIERS)