-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
51 lines (49 loc) · 1.42 KB
/
setup.py
File metadata and controls
51 lines (49 loc) · 1.42 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
"""
Setup script for the jess terminal connection manager.
"""
from setuptools import setup, find_packages
import jess
setup(
name="jess",
version=jess.__version__,
author=jess.__author__,
description=jess.__description__,
long_description=open("README.md").read() if hasattr(open("README.md"), "read") else jess.__description__,
long_description_content_type="text/markdown",
url="https://github.com/adamspera/jess",
packages=find_packages(),
install_requires=[
"paramiko>=2.7.0", # For SSH connections
"pyyaml>=5.1.0", # For YAML parsing
"colorama>=0.4.3", # For colored terminal output
"tabulate>=0.8.7", # For formatted table display
],
entry_points={
"console_scripts": [
"jess=jess.cli:main",
],
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: System :: Networking",
"Topic :: Utilities",
],
python_requires=">=3.6",
extras_require={
"dev": [
"pytest>=6.0.0",
"pytest-cov>=2.10.0",
"flake8>=3.8.0",
"black>=20.8b1",
"isort>=5.0.0",
"coverage>=5.5.0",
],
"test": [
"pytest>=6.0.0",
"pytest-cov>=2.10.0",
"coverage>=5.5.0",
],
},
)