mirror of
https://github.com/Telecominfraproject/wlan-lanforge-scripts.git
synced 2025-12-24 06:17:20 +00:00
Finish pip package creation script
Signed-off-by: Matthew Stidham <stidmatt@gmail.com>
This commit is contained in:
44
setup.py
Executable file
44
setup.py
Executable file
@@ -0,0 +1,44 @@
|
||||
#!/usr/bin/env python3
|
||||
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
setup(
|
||||
name="lanforge_scripts",
|
||||
version="0.0.1",
|
||||
author="Candela Technologies",
|
||||
description="Automate LANforge devices",
|
||||
license='BSD 3-clause license',
|
||||
url='https://github.com/greearb/lanforge-scripts',
|
||||
long_description=open('README.md').read(),
|
||||
long_description_content_type="text/markdown",
|
||||
packages=find_packages(),
|
||||
install_requires=[
|
||||
'pandas',
|
||||
'plotly',
|
||||
'numpy',
|
||||
'cryptography',
|
||||
'paramiko',
|
||||
'bokeh',
|
||||
'pyarrow',
|
||||
'websocket-client',
|
||||
'xlsxwriter',
|
||||
'pyshark',
|
||||
'influxdb',
|
||||
'influxdb-client',
|
||||
'matplotlib',
|
||||
'pdfkit',
|
||||
'pip-search',
|
||||
'pyserial',
|
||||
'pexpect-serial',
|
||||
'scp',
|
||||
'dash',
|
||||
'kaleido'],
|
||||
python_required='>=3.6, <4',
|
||||
classifiers=[
|
||||
"Programming Language :: Python :: 3",
|
||||
"Operating System :: OS Independent",
|
||||
],
|
||||
project_urls={
|
||||
'Homepage': 'https://www.candelatech.com'
|
||||
}
|
||||
)
|
||||
Reference in New Issue
Block a user