Skip to content

Commit

Permalink
Add distutils infrastructure (setup.py and others)
Browse files Browse the repository at this point in the history
  • Loading branch information
thp committed Jan 17, 2010
1 parent a98a25c commit a5c6558
Show file tree
Hide file tree
Showing 5 changed files with 69 additions and 7 deletions.
5 changes: 5 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
include AUTHORS
include COPYING
include DEPENDENCIES
include SPECIFICATION
include makefile
31 changes: 31 additions & 0 deletions README
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@

-----------------------------------------------------------
The my.gpodder.org Client Library
-----------------------------------------------------------

This library provides an easy and structured way to access the
my.gpodder.org web services. In addition to subscription list
synchronization and storage, the advanced API support allows
to upload and download episode status changes.

The API specification for the my.gpodder.org webservice can
be found at

http://wiki.gpodder.org/wiki/Web_Services/API

The source of this library is managed in a Git repository at

http://repo.or.cz/w/mygpoclient.git

If you have any questions, please don't hesitate to contact
the gPodder developers mailing list at

[email protected]

You can report bugs and problems that you find by using our
Bugzilla installation at

http://bugs.gpodder.org/

Thank you for your interest in the mygpoclient library!

5 changes: 0 additions & 5 deletions SPECIFICATION

This file was deleted.

8 changes: 6 additions & 2 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,11 @@ upload-docs: clean docs
clean:
find -name '*.pyc' -exec rm '{}' \;
rm -f .coverage
rm -rf docs/
rm -rf docs/ build/

.PHONY: test docs clean
distclean:
rm -f MANIFEST
rm -rf dist/

.PHONY: test docs clean distclean

27 changes: 27 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# -*- coding: utf-8 -*-
# my.gpodder.org API Client
# Copyright (C) 2009-2010 Thomas Perl
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.

from distutils.core import setup

setup(name='mygpoclient',
version='1.0',
description='Library for accessing my.gpodder.org web services.',
author='Thomas Perl',
author_email='[email protected]',
url='http://repo.or.cz/w/mygpoclient.git/',
packages=['mygpoclient'])

0 comments on commit a5c6558

Please sign in to comment.