Skip to content

Commit 80be1a5

Browse files
committed
Merge pull request #2 from Medium/kyle-pypi
Setup PyPi
2 parents 3d5da75 + 88b2733 commit 80be1a5

File tree

3 files changed

+20
-0
lines changed

3 files changed

+20
-0
lines changed

MANIFEST

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# file GENERATED by distutils, do NOT edit
2+
setup.cfg
3+
setup.py
4+
medium/__init__.py

setup.cfg

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[metadata]
2+
description-file = README.md

setup.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
from distutils.core import setup
2+
setup(
3+
name='medium',
4+
packages=['medium'],
5+
install_requires=['requests'],
6+
version='0.2.0',
7+
description='SDK for working with the Medium API',
8+
author='Kyle Hardgrave',
9+
author_email='[email protected]',
10+
url='https://github.com/Medium/medium-sdk-python',
11+
download_url='https://github.com/Medium/medium-sdk-python/tarball/v0.2.0',
12+
keywords=['medium', 'sdk', 'oauth', 'api'],
13+
classifiers=[],
14+
)

0 commit comments

Comments
 (0)