forked from vmware-archive/pyvmomi-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request vmware-archive#17 from hartsock/package_refactor
Package refactor
- Loading branch information
Showing
16 changed files
with
108 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
language: python | ||
python: | ||
- "2.6" | ||
- "2.7" | ||
- "pypy" | ||
- "3.3" | ||
- "3.4" | ||
|
||
before_install: | ||
- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install unittest2; fi | ||
- pip install -r requirements.txt | ||
- pip install -r test-requirements.txt | ||
|
||
install: | ||
- python setup.py install | ||
|
||
script: python setup.py test |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
pyvmomi | ||
six>=1.7.3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
[nosetests] | ||
verbosity=0 | ||
detailed-errors=1 | ||
with-doctest=1 | ||
[bdist_wheel] | ||
universal=1 | ||
|
||
[bdist_rpm] | ||
requires=python-six,python-requests |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,24 +21,45 @@ def read(fname): | |
return open(os.path.join(os.path.dirname(__file__), fname)).read() | ||
|
||
|
||
with open('requirements.txt') as f: | ||
required = f.read().splitlines() | ||
|
||
with open('test-requirements.txt') as f: | ||
required_for_tests = f.read().splitlines() | ||
|
||
setup(name='pyvmomi-tools', | ||
version='5.5.0-2014.dev', | ||
# NOTE: Versions will be 0.1.0, 1.0.0, 1.1.0 and so on | ||
version='DEVELOPMENT', | ||
description='VMware vSphere Python SDK Community Tools', | ||
author='VMware, Inc.', | ||
author_email='[email protected]', | ||
url='https://github.com/vmware/pyvmomi-tools', | ||
packages=['pyvmomi_tools'], | ||
install_requires=['pyvmomi'], | ||
dependency_links=['https://github.com/vmware/pyvmomi'], | ||
install_requires=required, | ||
dependency_links=['https://github.com/vmware/pyvmomi', | ||
'https://github.com/kevin1024/vcrpy'], | ||
license='Apache', | ||
long_description=read('README.md'), | ||
long_description=read('README.rst'), | ||
classifiers=[ | ||
"License :: OSI Approved :: Apache Software License", | ||
"Development Status :: 1 - Planning", | ||
"Environment :: No Input/Output (Daemon)", | ||
"Intended Audience :: Information Technology", | ||
"Intended Audience :: System Administrators", | ||
"Topic :: Software Development :: Libraries :: Python Modules", | ||
"Topic :: System :: Distributed Computing" | ||
'Development Status :: 2 - Pre-Alpha', | ||
'License :: OSI Approved :: Apache Software License', | ||
'Intended Audience :: Information Technology', | ||
'Intended Audience :: System Administrators', | ||
'Intended Audience :: Developers', | ||
'Environment :: No Input/Output (Daemon)', | ||
'Programming Language :: Python :: 2', | ||
'Programming Language :: Python :: 2.6', | ||
'Programming Language :: Python :: 2.7', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.3', | ||
'Programming Language :: Python :: 3.4', | ||
'Topic :: Software Development :: Libraries :: Python Modules', | ||
'Topic :: System :: Distributed Computing', | ||
'Operating System :: Microsoft :: Windows', | ||
'Operating System :: POSIX', | ||
'Operating System :: Unix', | ||
'Operating System :: MacOS', | ||
], | ||
test_suite='tests', | ||
tests_require=required_for_tests, | ||
zip_safe=True) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
testtools>=0.9.34 | ||
vcrpy |
File renamed without changes.
File renamed without changes.
File renamed without changes.
Empty file.
File renamed without changes.