Skip to content

Commit e210a88

Browse files
author
brianmc
committed
small updates for release
1 parent 6b977be commit e210a88

File tree

4 files changed

+12
-11
lines changed

4 files changed

+12
-11
lines changed

properties.ini

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ md5.hash.key : MD5_HASH_KEY
99
logfilename : logFile.log
1010

1111
#proxy setup
12-
http://internet.visa.com:80
13-
https://internet.visa.com:443
12+
#http://proxy.yourcompany.com:80
13+
#https://proxy.yourcompany.com:443
1414

1515
#environments
1616
sandbox : https://apitest.authorize.net/xml/v1/request.api
17-
production : https://api.authorize.net/xml/v1/request.api
17+
production : https://api2.authorize.net/xml/v1/request.api

setup.cfg

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[metadata]
2+
description-file = DESCRIPTION.rst

setup.py

+4-8
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,16 @@
99

1010
here = path.abspath(path.dirname(__file__))
1111

12-
# Get the long description from the relevant file
13-
with open(path.join(here, 'DESCRIPTION.rst'), encoding='utf-8') as f:
14-
long_description = f.read()
1512

1613
setup(
17-
name='sdk-python',
14+
name='authorizenet',
1815

1916
# Versions should comply with PEP440. For a discussion on single-sourcing
2017
# the version across setup.py and the project code, see
2118
# https://packaging.python.org/en/latest/single_source_version.html
22-
version='1.0.0',
19+
version='1.0.2',
2320

24-
description='Authorize.Net Python project',
25-
long_description=long_description,
21+
description='Authorize.Net Python SDK',
2622

2723
# The project's main homepage.
2824
url='https://github.com/AuthorizeNet/sdk-python',
@@ -65,7 +61,7 @@
6561
# your project is installed. For an analysis of "install_requires" vs pip's
6662
# requirements files see:
6763
# https://packaging.python.org/en/latest/requirements.html
68-
install_requires=['pyxb', 'nose', 'nosetests', 'mock'],
64+
install_requires=['pyxb', 'nose', 'mock'],
6965
#install_requires=['nose'],
7066
#install_requires=['nosetests'],
7167
#install_requires=['mock'],

tests/testsmock.py

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
Created on Jul 1, 2015
33
44
@author: egodolja
5+
6+
'''
57
'''
68
import unittest
79
@@ -12,6 +14,7 @@
1214
from authorizenet.apicontrollers import *
1315
import test
1416
'''
17+
'''
1518
class ARBCancelSubscriptionControllerTest(apitestbase.ApiTestBase):
1619
1720
def test_ARBCancelSubscriptionController(self):

0 commit comments

Comments
 (0)