forked from hlainchb/siderunner
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
39 lines (32 loc) · 1.03 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
import os
import setuptools
name = 'siderunner'
requires = [
'PyVirtualDisplay',
'selenium',
]
here = os.path.abspath(os.path.dirname(__file__))
about = {}
with open(os.path.join(here, 'siderunner', '__version__.py'), 'r', encoding='utf-8') as f:
exec(f.read(), about)
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name=name,
version=about['__version__'],
author="Herb Lainchbury",
author_email="[email protected]",
description="Runs Selenium IDE tests without Selenium IDE.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/dsilabs/" + name,
packages=[name],
install_requires=requires,
classifiers=[
"Intended Audience :: Developers",
"Topic :: Software Development :: Testing",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
],
)