Skip to content

Commit

Permalink
Initial commit: rough outline, some scaffolding, everything totally u…
Browse files Browse the repository at this point in the history
…ntested
  • Loading branch information
Scott Torborg committed Dec 22, 2013
0 parents commit 0df0681
Show file tree
Hide file tree
Showing 9 changed files with 546 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .gitignore
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/
8 changes: 8 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
SonyPy Changelog
================


Version 0.1
-----------

- Initial release.
22 changes: 22 additions & 0 deletions LICENSE
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.
25 changes: 25 additions & 0 deletions README.rst
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.
8 changes: 8 additions & 0 deletions setup.cfg
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.*
29 changes: 29 additions & 0 deletions setup.py
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)
4 changes: 4 additions & 0 deletions sonypy/__init__.py
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']
Loading

0 comments on commit 0df0681

Please sign in to comment.