Skip to content

Commit 26d3b3f

Browse files
committed
tag release
1 parent 8102ddd commit 26d3b3f

5 files changed

Lines changed: 17 additions & 20 deletions

File tree

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
include README.md

README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
bitly API python library
2+
========================
3+
4+
## Installation
5+
6+
pip install bitly_api
7+
8+
## API Documentation
9+
10+
http://dev.bitly.com/

README.txt

Lines changed: 0 additions & 15 deletions
This file was deleted.

bitly_api/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from bitly_api import Connection, BitlyError, Error
2-
__version__ = '0.1.b'
2+
__version__ = '0.2'
33
__author__ = "Jehiah Czebotar <[email protected]>"
44
__all__ = ["Connection", "BitlyError", "Error"]
55
__doc__ = """

setup.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
from setuptools import setup
22

3-
version = '0.2.0'
3+
version = '0.2'
44

55
setup(name='bitly_api',
66
version=version,
77
description="An API for bit.ly",
8-
long_description=open("./README.txt", "r").read(),
8+
long_description=open("./README.md", "r").read(),
99
classifiers=[
1010
"Development Status :: 5 - Production/Stable",
1111
"Environment :: Console",
@@ -17,10 +17,11 @@
1717
"Topic :: Utilities",
1818
"License :: OSI Approved :: MIT License",
1919
],
20-
keywords='bit.ly bitly j.mp jmp',
20+
keywords='bitly bit.ly',
2121
author='Jehiah Czebotar',
2222
author_email='[email protected]',
23-
url='http://github.com/bitly/bitly-api-python',
23+
url='https://github.com/bitly/bitly-api-python',
24+
download_url="https://bitly-downloads.s3.amazonaws.com/bitly_api/bitly_api-%s.tar.gz" % version,
2425
license='MIT License',
2526
packages=['bitly_api'],
2627
include_package_data=True,

0 commit comments

Comments
 (0)