-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (36 loc) · 1.23 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
from setuptools import setup, find_packages
VERSION = '0.1.2.0'
setup(
name="lhub_cli",
version=VERSION,
author="Chad Roberts",
author_email="[email protected]",
description="LogicHub CLI",
long_description="A Python package for interacting with LogicHub via shell commands",
packages=find_packages(),
install_requires=[
"lhub ~= 0.2.6",
"configobj >= 5.0.6",
"dataclasses_json >= 0.5.6",
"rsa >= 4.8",
"requests",
"tabulate",
"colorama",
"structlog",
"progressbar2", # Only used in sample scripts for now, and imported not as "progressbar2" but just "progressbar"
],
keywords=["python", "lhub", "LogicHub", "api", "security", "cli"],
url="https://github.com/deathbywedgie/lhub_cli",
project_urls={
"Bug Tracker": "https://github.com/deathbywedgie/lhub_cli/issues",
},
# https://pypi.org/classifiers/
classifiers=[
"Development Status :: 1 - Planning",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: System Administrators",
"Intended Audience :: Information Technology",
"Programming Language :: Python :: 3.10",
"Natural Language :: English",
]
)