-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (36 loc) · 1.24 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
from setuptools import setup
from pbssh import __version__
if __name__ == "__main__":
descrip = "A wrapper over SSH commands which grabs credentials from Passbolt."
setup(
name="pbssh",
version=__version__,
description=descrip,
long_description=descrip,
author="Joshua Arulsamy",
author_email="joshua.gf.arul@gmail.com",
license="MIT",
packages=["pbssh"],
python_requires=">=3.9",
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
],
install_requires=[
"pgpy~=0.6.0",
"requests~=2.31.0",
],
entry_points={
"console_scripts": [
"pbssh = pbssh.pbssh:main",
]
}
)