-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial commit: rough outline, some scaffolding, everything totally u…
…ntested
- Loading branch information
Scott Torborg
committed
Dec 22, 2013
0 parents
commit 0df0681
Showing
9 changed files
with
546 additions
and
0 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,25 @@ | ||
# Base ignores: | ||
# Silly OS X trash files. | ||
.DS_Store | ||
|
||
# vim backup files. | ||
.*.swp | ||
|
||
# other editor backup files. | ||
*~ | ||
|
||
# Compiled python modules. | ||
*.pyc | ||
|
||
# Setuptools distribution folder. | ||
/dist/ | ||
|
||
# Egg metadata, regenerated from source files by setuptools. | ||
/*.egg-info | ||
|
||
# Tests coverage temp files. | ||
.coverage | ||
/cover | ||
|
||
# Rendered documentation. | ||
docs/_build/ |
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,8 @@ | ||
SonyPy Changelog | ||
================ | ||
|
||
|
||
Version 0.1 | ||
----------- | ||
|
||
- Initial release. |
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,22 @@ | ||
Copyright 2013 Cart Logic, Inc. | ||
Author: Scott Torborg | ||
http://github.com/storborg/sonypy | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining | ||
a copy of this software and associated documentation files (the | ||
"Software"), to deal in the Software without restriction, including | ||
without limitation the rights to use, copy, modify, merge, publish, | ||
distribute, sublicense, and/or sell copies of the Software, and to | ||
permit persons to whom the Software is furnished to do so, subject to | ||
the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be | ||
included in all copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, | ||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF | ||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND | ||
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE | ||
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION | ||
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION | ||
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
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,25 @@ | ||
SonyPy - Implements the Sony Camera Remote API | ||
============================================== | ||
|
||
Scott Torborg - `Cart Logic <http://www.cartlogic.com>`_ | ||
|
||
|
||
Installation | ||
============ | ||
|
||
Install with pip:: | ||
|
||
$ pip install sonypy | ||
|
||
|
||
Quick Start | ||
=========== | ||
|
||
TODO | ||
|
||
|
||
License | ||
======= | ||
|
||
SonyPy is licensed under an MIT license. Please see the LICENSE file for more | ||
information. |
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,8 @@ | ||
[nosetests] | ||
with-coverage3 = true | ||
cover3-erase = true | ||
cover3-package = sonypy | ||
cover3-inclusive = true | ||
cover3-html = true | ||
cover3-branch = true | ||
cover3-exclude = sonypy.tests.* |
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,29 @@ | ||
from setuptools import setup | ||
|
||
|
||
setup(name="sonypy", | ||
version='0.1', | ||
description='Remote Control of Sony Cameras', | ||
long_description='', | ||
classifiers=[ | ||
'Development Status :: 2 - Pre-Alpha', | ||
'License :: OSI Approved :: MIT License', | ||
'Programming Language :: Python :: 2', | ||
'Programming Language :: Python :: 2.7', | ||
], | ||
keywords='sony camera remote control a7 nex', | ||
url='http://github.com/storborg/sonypy', | ||
author='Scott Torborg', | ||
author_email='[email protected]', | ||
install_requires=[ | ||
'requests', | ||
# These are for tests. | ||
'coverage', | ||
'nose>=1.1', | ||
'nose-cover3', | ||
], | ||
license='MIT', | ||
packages=['sonypy'], | ||
test_suite='nose.collector', | ||
tests_require=['nose'], | ||
zip_safe=False) |
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,4 @@ | ||
from .discovery import Discoverer | ||
from .camera import Camera | ||
|
||
__all__ = ['Discoverer', 'Camera'] |
Oops, something went wrong.