Metadata-Version: 2.1
Name: csv-ical
Version: 1.0.4
Summary: Convert between CSV and iCal
Home-page: https://github.com/albertyw/csv-ical
Author: Albert Wang
Author-email: git@albertyw.com
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Topic :: Software Development
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Requires-Dist: icalendar (<5.0.0,>=4.0.1)
Provides-Extra: dev
Provides-Extra: test

CSV/iCal Converter
==================

|PyPI| |Python Versions|

|Codeship Status for albertyw/csv-ical| |Dependency Status| |Code Climate| |Test Coverage|


A simple script to convert data in CSV format to iCal format and vice versa.

Installation
------------

.. code:: bash

    pip install csv-ical

Usage
-----

See the example files.

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

.. code:: bash

    pip install -r requirements-test.txt
    pip install -r requirements-test-python3.txt
    mypy csv_ical/convert.py --ignore-missing-imports
    coverage run setup.py test
    coverage report -m
    flake8

Publishing
----------

.. code:: bash

    pip install twine
    python setup.py sdist bdist_wheel
    twine upload dist/*

.. |PyPI| image:: https://img.shields.io/pypi/v/csv-ical.svg
   :target: https://pypi.python.org/pypi/csv-ical/
.. |Python Versions| image:: https://img.shields.io/pypi/pyversions/csv-ical.svg
   :target: https://github.com/albertyw/csv-ical
.. |Codeship Status for albertyw/csv-ical| image:: https://app.codeship.com/projects/2c87dbd0-f84c-0135-ce47-1a2a752165ba/status?branch=master
   :target: https://app.codeship.com/projects/278164
.. |Dependency Status| image:: https://pyup.io/repos/github/albertyw/csv-ical/shield.svg
   :target: https://pyup.io/repos/github/albertyw/csv-ical/
.. |Code Climate| image:: https://codeclimate.com/github/albertyw/csv-ical/badges/gpa.svg
   :target: https://codeclimate.com/github/albertyw/csv-ical
.. |Test Coverage| image:: https://codeclimate.com/github/albertyw/csv-ical/badges/coverage.svg
   :target: https://codeclimate.com/github/albertyw/csv-ical/coverage


