This repository has been archived by the owner on Nov 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
59 lines (48 loc) · 1.56 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
from setuptools import setup, find_packages
from testhook import __version__
# Testing dependencies
test_extras = [
'coverage>=4.0.3',
'flake8>=2.5.2',
'tox>=2.3.1'
]
setup(
name='django-testhook',
version=__version__,
license='Apache License, Version 2.0',
requires=[
'Django (>=1.8)',
],
description='''A Django template tag to enable testhook
attributes on HTML elements.''',
long_description=open('README.rst').read(),
author='Janneke Janssen',
author_email='[email protected]',
keywords='templatetag testhook django',
url='http://github.com/jjanssen/django-testhook',
packages=find_packages(),
include_package_data=True,
test_suite='runtests',
zip_safe=False,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Framework :: Django :: 1.8',
'Framework :: Django :: 1.9',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Internet :: WWW/HTTP :: Browsers',
'Topic :: Software Development :: Quality Assurance',
'Topic :: Software Development :: Testing',
],
extras_require={
'test': test_extras
},
)