This repository has been archived by the owner on Feb 12, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
44 lines (39 loc) · 1.47 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
44
#!/usr/bin/env python
"""scrapli_asyncssh - asyncssh transport plugin for scrapli"""
import setuptools
from scrapli_asyncssh import __version__
__author__ = "Carl Montanari"
with open("README.md", "r", encoding="utf-8") as f:
README = f.read()
with open("requirements.txt", "r") as f:
INSTALL_REQUIRES = f.read().splitlines()
setuptools.setup(
name="scrapli_asyncssh",
version=__version__,
author=__author__,
author_email="carl.r.montanari@gmail.com",
description="asyncssh transport plugin for the scrapli SSH|Telnet screen scraping library",
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/scrapli/scrapli_asyncssh",
project_urls={
"Changelog": "https://github.com/scrapli/scrapli_asyncssh/blob/master/CHANGELOG.md"
},
license="MIT",
packages=setuptools.find_packages(),
install_requires=INSTALL_REQUIRES,
extras_require={},
classifiers=[
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Libraries :: Python Modules",
],
python_requires=">=3.6",
)