Skip to content

Commit 49918e0

Browse files
author
Majid Mallis
committed
GA version of DocuSign Python SDK
1 parent b328809 commit 49918e0

File tree

3 files changed

+18
-4
lines changed

3 files changed

+18
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# The Official DocuSign Python Client
22

33
[![PyPI version][pypi-image]][pypi-url]
4-
<!---[![PyPI downloads][downloads-image]][downloads-url]--->
4+
<!--[![PyPI downloads][downloads-image]][downloads-url]-->
55
[![Build status][travis-image]][travis-url]
66

77
[PyPI module](https://pypi.python.org/pypi/docusign_esign) that wraps the <a href="https://www.docusign.com">DocuSign</a> API
@@ -155,7 +155,7 @@ The url for the Userinfo method is account-d.docusign.com for the demo/developer
155155
Testing
156156
=======
157157

158-
Unit tests are available in the [Test](https://github.com/docusign/docusign-node-client/tree/master/test) folder.
158+
Unit tests are available in the [Test](https://github.com/docusign/docusign-python-client/tree/master/test/unit_tests.py) folder.
159159

160160
Contributing
161161
============

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ python_dateutil >= 2.5.3
44
setuptools >= 21.0.0
55
urllib3 >= 1.15.1
66
jwcrypto >= 0.4.2
7-
py-oauth2>=0.0.10
7+
py-oauth2 >= 0.0.10

setup.py

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@
1212

1313

1414
import sys
15-
from setuptools import setup, find_packages
15+
import os
16+
from setuptools import setup, find_packages, Command
1617

1718
NAME = "docusign_esign"
1819
VERSION = "1.0.1"
@@ -25,6 +26,16 @@
2526

2627
REQUIRES = ["urllib3 >= 1.15", "six >= 1.10", "certifi", "python-dateutil", "jwcrypto >= 0.4.2", "py-oauth2>=0.0.10"]
2728

29+
class CleanCommand(Command):
30+
"""Custom clean command to tidy up the project root."""
31+
user_options = []
32+
def initialize_options(self):
33+
pass
34+
def finalize_options(self):
35+
pass
36+
def run(self):
37+
os.system('rm -vrf ./build ./dist ./*.pyc ./*.tgz ./*.egg-info')
38+
2839
setup(
2940
name=NAME,
3041
version=VERSION,
@@ -35,6 +46,9 @@
3546
install_requires=REQUIRES,
3647
packages=find_packages(),
3748
include_package_data=True,
49+
cmdclass={
50+
'clean': CleanCommand,
51+
},
3852
long_description="""\
3953
The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign.
4054
"""

0 commit comments

Comments
 (0)