This repository has been archived by the owner on May 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
52 lines (45 loc) · 1.79 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
#!/usr/bin/env python
import versioneer
from setuptools import setup
versioneer.VCS = 'git'
versioneer.versionfile_source = 'imprimatur/_version.py'
versioneer.versionfile_build = 'imprimatur/_version.py'
versioneer.tag_prefix = ''
versioneer.parentdir_prefix = 'imprimatur-'
long_description = """\
Imprimatur
----------
Imprimatur is a tool for performing automated functional testing on web
applications. The tests are described in a simple test script. Along with the
standard HTTP methods, Imprimatur handles authentication, file uploads and
HTTPS. The responses are validated using regular expressions."""
cmdclass = dict(versioneer.get_cmdclass())
version = versioneer.get_version()
setup(
name="imprimatur",
version=version,
cmdclass=cmdclass,
description="Functional testing tool for web applications.",
long_description=long_description,
author="Tony Locke",
author_email="[email protected]",
url="https://github.com/tlocke/imprimatur",
license="GPL",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: Implementation",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Operating System :: OS Independent",
],
keywords="functional testing web",
packages=("imprimatur",),
package_data={'imprimatur': ['templates/*.html']},
install_requires=['requests==2.23.0', 'flask==1.1.2'],
entry_points={'console_scripts': ['imprimatur = imprimatur.console:main']}
)