-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (29 loc) · 848 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
33
# -*- coding: utf-8 -*-
"""
assert-select
=============
A convenience library for making assertions about the CSS selectors present
in a rendered template. Concept lifted directly from Rails. Code paraphrased
from Rails.
.. _github: http://github.com/aroberts/assert-select
"""
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='assert-select',
version='1.0.1',
url='http://github.com/aroberts/assert-select',
license='BSD',
author='Andrew Roberts',
author_email='[email protected]',
description='Make assertions about CSS selectors',
long_description=__doc__,
py_modules=['assert_select'],
include_package_data=True,
install_requires=['beautifulsoup4==4.1.3',
'html5lib',],
zip_safe=False,
platforms='any'
)