From 89fbc3d2eae0f2bbe84c3edea27c96f25f2580e1 Mon Sep 17 00:00:00 2001 From: "Derek J. Curtis" Date: Tue, 12 Jul 2016 13:24:25 +0700 Subject: [PATCH] Updated version information and some minor documentation changes. --- setup.py | 18 +++++++++--------- veritranspay/__init__.py | 2 +- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/setup.py b/setup.py index 52b8774..39b4ec2 100644 --- a/setup.py +++ b/setup.py @@ -1,23 +1,22 @@ -''' +""" VeritransPay -------- +============ -Client library for communicating with **VERSION 2** of the -veritrans.co.id payment gateway. Note, there is no support for the older -v1 API as this was dropped in Dec 2014. +Client library for communicating with **VERSION 2** of the veritrans.co.id payment gateway. Notes -````` +----- + This is still an early release and does not provide access to all the functionality of the Veritrans.co.id API. Currently, only submitting credit-card payments, and receiving that response is supported. Links -````` +----- * `veritrans website `_ -''' +""" from setuptools import setup @@ -50,8 +49,9 @@ 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', ], install_requires=pkg_req, tests_require=test_req, test_suite='nose.collector' - ) +) diff --git a/veritranspay/__init__.py b/veritranspay/__init__.py index 27fda16..e220fa9 100644 --- a/veritranspay/__init__.py +++ b/veritranspay/__init__.py @@ -1 +1 @@ -__version__ = '0.6' +__version__ = '0.7'