forked from QualiSystems/Cisco-IOS-Shell
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (20 loc) · 747 Bytes
/
setup.py
File metadata and controls
24 lines (20 loc) · 747 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup, find_packages
import os
with open(os.path.join('version.txt')) as version_file:
version_from_file = version_file.read().strip()
with open('requirements.txt') as f_required:
required = f_required.read().splitlines()
with open('test_requirements.txt') as f_tests:
required_for_tests = f_tests.read().splitlines()
setup(
name='cloudshell-networking-cisco-ios',
url='http://www.qualisystems.com/',
author='QualiSystems',
author_email='info@qualisystems.com',
packages=find_packages(),
install_requires=required,
tests_require=required_for_tests,
version=version_from_file,
description='QualiSystems networking cisco IOS specific Package',
include_package_data = True
)