Skip to content
This repository has been archived by the owner on Jan 30, 2024. It is now read-only.

Commit

Permalink
Initial creation of instapy package
Browse files Browse the repository at this point in the history
  • Loading branch information
gekitsuu committed Oct 25, 2011
0 parents commit a143b46
Show file tree
Hide file tree
Showing 9 changed files with 56 additions and 0 deletions.
11 changes: 11 additions & 0 deletions instapy.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
Metadata-Version: 1.0
Name: instapy
Version: 0.1dev
Summary: Python Library for instapaper.com API
Home-page: http://gekitsuu.org
Author: Adam Glenn
Author-email: [email protected]
License: BSD
Description: UNKNOWN
Keywords: instapaper
Platform: UNKNOWN
9 changes: 9 additions & 0 deletions instapy.egg-info/SOURCES.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
setup.cfg
setup.py
instapy/__init__.py
instapy.egg-info/PKG-INFO
instapy.egg-info/SOURCES.txt
instapy.egg-info/dependency_links.txt
instapy.egg-info/entry_points.txt
instapy.egg-info/not-zip-safe
instapy.egg-info/top_level.txt
1 change: 1 addition & 0 deletions instapy.egg-info/dependency_links.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

3 changes: 3 additions & 0 deletions instapy.egg-info/entry_points.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@

# -*- Entry points: -*-

1 change: 1 addition & 0 deletions instapy.egg-info/not-zip-safe
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 1 addition & 0 deletions instapy.egg-info/top_level.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
instapy
1 change: 1 addition & 0 deletions instapy/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#
3 changes: 3 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[egg_info]
tag_build = dev
tag_svn_revision = true
26 changes: 26 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
from setuptools import setup, find_packages
import sys, os

version = '0.1'

setup(name='instapy',
version=version,
description="Python Library for instapaper.com API",
long_description="""\
""",
classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
keywords='instapaper',
author='Adam Glenn',
author_email='[email protected]',
url='http://gekitsuu.org',
license='BSD',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=[
# -*- Extra requirements: -*-
],
entry_points="""
# -*- Entry points: -*-
""",
)

0 comments on commit a143b46

Please sign in to comment.