forked from splunk/pytest-splunk-addon
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
65 lines (59 loc) · 1.88 KB
/
setup.py
File metadata and controls
65 lines (59 loc) · 1.88 KB
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
60
61
62
63
64
65
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import codecs
import os
from setuptools import setup, find_packages
import versioneer
def read(fname):
file_path = os.path.join(os.path.dirname(__file__), fname)
return codecs.open(file_path, encoding="utf-8").read()
test_requirements = [
"pytest>=5",
]
setup(
name="pytest-splunk-addon",
author="Splunk, Inc.",
author_email="appinspect@splunk.com",
include_package_data=True,
maintainer="Splunk, Inc.",
maintainer_email="appinspect@splunk.com",
license="Apache Software License 2.0",
url="https://github.com/splunk/pytest-splunk-addon",
description="A Dynamic test tool for Splunk Apps and Add-ons",
long_description=read("README.rst"),
python_requires=">=3.0, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*",
install_requires=[
"pytest~=5.3",
"splunk-sdk~=1.6",
"future~=0.17.1",
"httplib2~=0.17",
"logutils",
"requests2~=2.16",
"splunk_appinspect>=2.0.1",
"six",
"jsonschema~=3.2.0",
],
extras_require={"docker": ["lovely-pytest-docker>=0.1.0"]},
setup_requires=["pytest-runner"],
classifiers=[
"Development Status :: 4 - Beta",
"Framework :: Pytest",
"Intended Audience :: Developers",
"Topic :: Software Development :: Testing",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Operating System :: OS Independent",
"License :: OSI Approved :: Apache Software License",
],
packages=find_packages(include=["pytest_splunk_addon", "pytest_splunk_addon.*"]),
test_suite="tests",
zip_safe=False,
entry_points={
"pytest11": [
"plugin = pytest_splunk_addon.plugin",
"splunk = pytest_splunk_addon.splunk",
]
},
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
)