Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Dominic Monn committed Jun 11, 2016
0 parents commit e96dda7
Show file tree
Hide file tree
Showing 11 changed files with 103 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
venv/
*.egg-info
11 changes: 11 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
CHANGELOG
=========

===============================================
Alpha (do not use these versions)
===============================================

0.0.1 (2016-04-18)
------------------

* **Initial release**
28 changes: 28 additions & 0 deletions LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
Copyright (c) 2016, Dominic Monn
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:

* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above
copyright notice, this list of conditions and the following
disclaimer in the documentation and/or other materials provided
with the distribution.
* Neither the name of the author nor the names of other
contributors may be used to endorse or promote products derived
from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3 changes: 3 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
include LICENSE
include README.rst
recursive-include socialize *
32 changes: 32 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
######################
Socialize
######################

TBD


============
Installation
============

TBD

=====
Usage
=====

TBD

============
Contributing
============

This is a community project. We love to get any feedback in the form of
`issues`_ and `pull requests`_.

.. _issues: https://github.com/dmonn/socialize/issues
.. _pull requests: https://github.com/dmonn/socialize/pulls




Binary file added dist/socialize-0.1.tar.gz
Binary file not shown.
21 changes: 21 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
from setuptools import setup

setup(
name='socialize',
version='0.1',
description='The official command-line client of socialize',
author='Dominic Monn',
author_email='monn.dominic@gmail.com',
url='http://socialize.dmonn.ch',
zip_safe=False,
license='BSD',
platforms=['OS Independent'],
py_modules=['socialize'],
install_requires=[
'Click',
],
entry_points='''
[console_scripts]
soclz=socialize.cli:cli
''',
)
Empty file added socialize/__init__.py
Empty file.
Binary file added socialize/__init__.pyc
Binary file not shown.
6 changes: 6 additions & 0 deletions socialize/cli.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import click

@click.command()
def cli():
"""Example script."""
click.echo('Hello World!')
Binary file added socialize/cli.pyc
Binary file not shown.

0 comments on commit e96dda7

Please sign in to comment.