Skip to content

Commit

Permalink
Merge pull request #2 from Medium/kyle-pypi
Browse files Browse the repository at this point in the history
Setup PyPi
  • Loading branch information
kylehg committed Oct 8, 2015
2 parents 3d5da75 + 88b2733 commit 80be1a5
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 0 deletions.
4 changes: 4 additions & 0 deletions MANIFEST
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# file GENERATED by distutils, do NOT edit
setup.cfg
setup.py
medium/__init__.py
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[metadata]
description-file = README.md
14 changes: 14 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
from distutils.core import setup
setup(
name='medium',
packages=['medium'],
install_requires=['requests'],
version='0.2.0',
description='SDK for working with the Medium API',
author='Kyle Hardgrave',
author_email='[email protected]',
url='https://github.com/Medium/medium-sdk-python',
download_url='https://github.com/Medium/medium-sdk-python/tarball/v0.2.0',
keywords=['medium', 'sdk', 'oauth', 'api'],
classifiers=[],
)

0 comments on commit 80be1a5

Please sign in to comment.