Skip to content

Commit 088ebb5

Browse files
Version Bump v1.2.4
1 parent 6f263af commit 088ebb5

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,3 +67,5 @@ venv/
6767
cleanup.sh
6868
*_example.py
6969
.idea
70+
register.py
71+
README.txt

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
All notable changes to this project will be documented in this file.
33
This project adheres to [Semantic Versioning](http://semver.org/).
44

5+
## [1.2.4] - 2016-3-02
6+
### Fixed
7+
- Getting README to display in PyPi
8+
59
## [1.2.3] - 2016-3-01
610
### Added
711
- Can now reuse part of the chaining construction for multiple urls/requests

setup.py

100644100755
Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
import sys
2+
import os
23
from setuptools import setup
34

5+
long_description = 'Please see our GitHub README'
6+
if os.path.exists('README.txt'):
7+
long_description = open('README.txt').read()
48

59
def getRequires():
610
deps = []
@@ -9,7 +13,7 @@ def getRequires():
913
return deps
1014

1115
base_url = 'https://github.com/sendgrid/'
12-
version = '1.2.3'
16+
version = '1.2.4'
1317
setup(
1418
name='python_http_client',
1519
version=version,
@@ -20,7 +24,7 @@ def getRequires():
2024
packages=['python_http_client'],
2125
license='MIT',
2226
description='HTTP REST client, simplified for Python',
23-
long_description='Check out the README at GitHub',
27+
long_description=long_description,
2428
install_requires=getRequires(),
2529
keywords=[
2630
'REST',

0 commit comments

Comments
 (0)