Skip to content
This repository was archived by the owner on Jul 17, 2020. It is now read-only.

Commit 89fbc3d

Browse files
author
Derek J. Curtis
committed
Updated version information and some minor documentation changes.
1 parent afb851c commit 89fbc3d

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

setup.py

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,22 @@
1-
'''
1+
"""
22
VeritransPay
3-
-------
3+
============
44
5-
Client library for communicating with **VERSION 2** of the
6-
veritrans.co.id payment gateway. Note, there is no support for the older
7-
v1 API as this was dropped in Dec 2014.
5+
Client library for communicating with **VERSION 2** of the veritrans.co.id payment gateway.
86
97
Notes
10-
`````
8+
-----
9+
1110
This is still an early release and does not provide access to all the
1211
functionality of the Veritrans.co.id API. Currently, only submitting
1312
credit-card payments, and receiving that response is supported.
1413
1514
Links
16-
`````
15+
-----
1716
1817
* `veritrans website <http://veritrans.co.id/>`_
1918
20-
'''
19+
"""
2120
from setuptools import setup
2221

2322

@@ -50,8 +49,9 @@
5049
'Programming Language :: Python :: 2.7',
5150
'Programming Language :: Python :: 3.3',
5251
'Programming Language :: Python :: 3.4',
52+
'Programming Language :: Python :: 3.5',
5353
],
5454
install_requires=pkg_req,
5555
tests_require=test_req,
5656
test_suite='nose.collector'
57-
)
57+
)

veritranspay/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.6'
1+
__version__ = '0.7'

0 commit comments

Comments
 (0)