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'