forked from johnpaulett/django-with-asserts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (26 loc) · 867 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
from setuptools import setup
version = __import__('with_asserts').get_version()
setup(
name='django-with-asserts',
version=version,
description='Helpers for testing Django using context managers',
author='John Paulett',
author_email='[email protected]',
url='https://django-with-asserts.readthedocs.org',
license='BSD',
packages=['with_asserts'],
classifiers=[
'Intended Audience :: Developers',
'Programming Language :: Python',
'Environment :: Web Environment',
'Framework :: Django',
'License :: OSI Approved :: BSD License',
'Topic :: Software Development :: Testing',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
install_requires=[
'lxml',
'cssselect', # split out of lxml.cssselect in v3.0
],
)