-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (28 loc) · 1.01 KB
/
Copy pathsetup.py
File metadata and controls
29 lines (28 loc) · 1.01 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
from setuptools import setup, find_packages
with open("README.md") as f:
long_description = f.read()
setup(
name="pytest-pylenium",
description="selenium wrapper for pytest to aid with system testing",
license="Apache Software License 2.0",
author="Simon Kerr",
url="https://github.com/symonk/pytest-pylenium",
version="0.0.1",
author_email="jackofspaces@gmail.com",
maintainer="Simon Kerr",
maintainer_email="jackofspaces@gmail.com",
packages=find_packages(where="src"),
package_dir={"": "src"},
entry_points={"pytest11": ["pylenium = pylenium.plugin"]},
setup_requires=["setuptools_scm"],
zip_safe=False,
classifiers=[
"Development Status :: 4 - Beta",
"Framework :: Pytest",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Quality Assurance",
"Programming Language :: Python :: 3.7",
"Operating System :: OS Independent",
"License :: OSI Approved :: Apache Software License",
],
)