forked from MarketSquare/SSHLibrary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·43 lines (40 loc) · 1.44 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
42
43
#!/usr/bin/env python
import re
from os.path import abspath, dirname, join
from setuptools import setup
CURDIR = dirname(abspath(__file__))
REQUIREMENTS = ["robotframework >= 5.0", "paramiko >= 1.15.3", "scp >= 0.13.0"]
with open(join(CURDIR, "src", "SSHLibrary", "version.py")) as f:
VERSION = re.search("\nVERSION = '(.*)'", f.read()).group(1)
with open(join(CURDIR, "README.rst")) as f:
DESCRIPTION = f.read()
CLASSIFIERS = """
Development Status :: 5 - Production/Stable
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Topic :: Software Development :: Testing
Framework :: Robot Framework
Framework :: Robot Framework :: Library
""".strip().splitlines()
setup(
name="robotframework-sshlibrary",
version=VERSION,
description="Robot Framework test library for SSH and SFTP",
long_description=DESCRIPTION,
author="Robot Framework Developers",
author_email="[email protected]",
url="https://github.com/MarketSquare/SSHLibrary",
license="Apache License 2.0",
keywords="robotframework testing testautomation ssh sftp",
platforms="any",
classifiers=CLASSIFIERS,
install_requires=REQUIREMENTS,
package_dir={"": "src"},
packages=["SSHLibrary"],
)