-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
41 lines (37 loc) · 1.48 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
import setuptools
with open("README.md", "r") as f:
long_description = f.read()
setuptools.setup(
name="pytest-automation",
description="pytest plugin for building a test suite, using YAML files to extend pytest parameterize functionality.",
long_description=long_description,
long_description_content_type="text/markdown",
author="Alaska Satellite Facility Discovery Team",
author_email="[email protected]",
packages=["automation"],
url="https://github.com/asfadmin/Discovery-PytestAutomation",
# the following makes a plugin available to pytest
entry_points={"pytest11": ["pytest-automation = automation.plugin"]},
# custom PyPI classifier for pytest plugins
classifiers=[
"Framework :: Pytest",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development :: Testing"
],
install_requires=[
'pytest>=7.0.0',
'PyYAML',
],
license='BSD',
license_files=('LICENSE',),
## After creating test suite, figure out if these keys are useful:
#test_suite='???',
#tests_require=['???'],
)