Skip to content

Commit

Permalink
Merge branch 'release/1.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
thespacedoctor committed Sep 25, 2016
2 parents 7855dcd + 5d9eb56 commit 5c2a03c
Show file tree
Hide file tree
Showing 78 changed files with 6,018 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
.metadata
*~
*.sublime-project
*.sublime-workspace
.DS_Store
.svn
_git*
*.orig
.coverage
.noseids
cover/
html_test_coverage_report/
_ignore_*
build

# Compiled python modules.
*.pyc

# Setuptools distribution folder.
/dist/

# Python egg metadata, regenerated from source files by setuptools.
/*.egg-info
/*.egg
build/
/docs/build

logger.log
## Apache logs
logs/*.log
transients_cache/
test_database.sql
/logs/log.html

path_to_settings.yaml
*/tests/output
7 changes: 7 additions & 0 deletions LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Copyright (c) xxnow-yearxx David Young

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.
9 changes: 9 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
include README.md
include README.rst
include *.yaml
include *.txt
include *.md
include *.rst
recursive-include tastic *
global-exclude *.pyo
global-exclude *.pyc
86 changes: 86 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
tastic
======

*Scripts and Command-Line tools for working with taskpaper documents on
macOS and iOS*.

Usage
=====

Documentation for tastic can be found here: http://tastic.readthedocs.org/en/stable

Usage:
tastic index [-s <pathToSettingsFile>]

-h, --help show this help message
-s, --settings the settings file

Documentation
=============

Documentation for tastic is hosted by [Read the
Docs](http://tastic.readthedocs.org/en/stable/) (last [stable
version](http://tastic.readthedocs.org/en/stable/) and [latest
version](http://tastic.readthedocs.org/en/latest/)).

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

The easiest way to install tastic us to use `pip`:

pip install tastic

Or you can clone the [github
repo](https://github.com/thespacedoctor/tastic) and install from a local
version of the code:

git clone git@github.com:thespacedoctor/tastic.git
cd tastic
python setup.py install

To upgrade to the latest version of tastic use the command:

pip install tastic --upgrade

Development
-----------

If you want to tinker with the code, then install in development mode.
This means you can modify the code from your cloned repo:

git clone git@github.com:thespacedoctor/tastic.git
cd tastic
python setup.py develop

[Pull requests](https://github.com/thespacedoctor/tastic/pulls) are
welcomed!

Issues
------

Please report any issues
[here](https://github.com/thespacedoctor/tastic/issues).

License
=======

Copyright (c) 2016 David Young

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.
95 changes: 95 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,95 @@
tastic
=========================

*Scripts and Command-Line tools for working with taskpaper documents on macOS and iOS*.

Usage
======

.. code-block:: bash
Documentation for tastic can be found here: http://tastic.readthedocs.org/en/stable
Usage:
tastic index [-s <pathToSettingsFile>]
-h, --help show this help message
-s, --settings the settings file
Documentation
=============

Documentation for tastic is hosted by `Read the Docs <http://tastic.readthedocs.org/en/stable/>`__ (last `stable version <http://tastic.readthedocs.org/en/stable/>`__ and `latest version <http://tastic.readthedocs.org/en/latest/>`__).

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

The easiest way to install tastic us to use ``pip``:

.. code:: bash
pip install tastic
Or you can clone the `github repo <https://github.com/thespacedoctor/tastic>`__ and install from a local version of the code:

.. code:: bash
git clone git@github.com:thespacedoctor/tastic.git
cd tastic
python setup.py install
To upgrade to the latest version of tastic use the command:

.. code:: bash
pip install tastic --upgrade
Development
-----------

If you want to tinker with the code, then install in development mode.
This means you can modify the code from your cloned repo:

.. code:: bash
git clone git@github.com:thespacedoctor/tastic.git
cd tastic
python setup.py develop
`Pull requests <https://github.com/thespacedoctor/tastic/pulls>`__
are welcomed!


Issues
------

Please report any issues
`here <https://github.com/thespacedoctor/tastic/issues>`__.

License
=======

Copyright (c) 2016 David Young

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.

0 comments on commit 5c2a03c

Please sign in to comment.