Skip to content

Commit

Permalink
add missing setup.py, README.txt, MANIFEST.in, etc.
Browse files Browse the repository at this point in the history
  • Loading branch information
eigel committed Feb 22, 2016
1 parent d151004 commit b0151a5
Show file tree
Hide file tree
Showing 6 changed files with 34 additions and 0 deletions.
2 changes: 2 additions & 0 deletions MANIFEST.in
@@ -0,0 +1,2 @@
include *.txt
global-include *.ini
1 change: 1 addition & 0 deletions README.txt
@@ -0,0 +1 @@
CloudShell snmp package powered by QualiSystems
2 changes: 2 additions & 0 deletions requirements.txt
@@ -0,0 +1,2 @@
cloudshell-core
pysnmp
26 changes: 26 additions & 0 deletions setup.py
@@ -0,0 +1,26 @@
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-snmp',
url='http://www.qualisystems.com/',
author='QualiSystems',
author_email='info@qualisystems.com',
packages=find_packages(),
install_requires=required,
test_suite='tests',
tests_require=required_for_tests,
version=version_from_file,
description='QualiSystems SNMP Python package',
include_package_data = True
)

2 changes: 2 additions & 0 deletions test_requirements.txt
@@ -0,0 +1,2 @@
cloudshell-core
pysnmp
1 change: 1 addition & 0 deletions version.txt
@@ -0,0 +1 @@
1.0.0

0 comments on commit b0151a5

Please sign in to comment.