This repository was archived by the owner on Sep 16, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (32 loc) · 1.26 KB
/
setup.py
File metadata and controls
34 lines (32 loc) · 1.26 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
from setuptools import setup
splinter_requires = ["splinter"]
setup(
name="PyPOM",
use_scm_version=True,
description="python page object model for selenium",
long_description=open("README.rst").read(),
author="Dave Hunt",
author_email="dhunt@mozilla.com",
url="https://github.com/mozilla/PyPOM",
package_dir={"": "src"},
packages=["pypom", "pypom.interfaces"],
install_requires=["zope.interface", "zope.component", "pluggy", "selenium"],
setup_requires=["setuptools_scm"],
extras_require={"splinter": splinter_requires},
license="Mozilla Public License 2.0 (MPL 2.0)",
keywords="pypom page object model selenium",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS :: MacOS X",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Testing",
"Topic :: Utilities",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.6",
],
)