Skip to content

Commit

Permalink
updating setup
Browse files Browse the repository at this point in the history
  • Loading branch information
doppleware committed Apr 3, 2016
1 parent 1df3fed commit f612173
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
17 changes: 11 additions & 6 deletions package/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,23 +7,28 @@
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-cp-vcenter",
url='https://github.com/QualiSystems/vCenterShell',
author="Quali",
author_email="support@qualisystems.com",
description=("This shell enables setting up vCenter as a cloud provider in"
"CloudShell. It supports connectivity, deployment and management operations"
"used for Cloudshel sanboxes."),
author_email="support@quali.com",
description=("This Shell enables setting up vCenter as a cloud provider in CloudShell. "
"It supports connectivity, and adds new deployment types for apps which can be used in "
"CloudShell sandboxes."),
packages=find_packages(),
test_suite='nose.collector',
test_requires=['Nose'],
test_requires=required_for_tests,
package_data={'': ['*.txt']},
install_requires=required,
version=version_from_file,
include_package_data=True,
keywords="sandbox cloud virtualization vcenter cmp cloudshell",
classifiers=[
"Development Status :: 4 - Beta",
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 2.7",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: Apache Software License",
]
Expand Down
1 change: 1 addition & 0 deletions package/test_requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
nose

0 comments on commit f612173

Please sign in to comment.