-
Notifications
You must be signed in to change notification settings - Fork 88
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Version 3.25.2-v2.1-23.3.01.02 release * Updated setup.py Signed-off-by: Mudit Garg <[email protected]> * Update CHANGELOG.md Signed-off-by: Mudit Garg <[email protected]> --------- Signed-off-by: Mudit Garg <[email protected]> Co-authored-by: root <[email protected]>
- Loading branch information
1 parent
573d489
commit d6c4ff4
Showing
3 changed files
with
54 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# coding: utf-8 | ||
|
||
# coding: utf-8 | ||
|
||
""" | ||
DocuSign REST API | ||
|
@@ -9,49 +9,49 @@ | |
Contact: [email protected] | ||
Generated by: https://github.com/swagger-api/swagger-codegen.git | ||
""" | ||
|
||
|
||
from setuptools import setup, find_packages, Command, os # noqa: H301 | ||
|
||
NAME = "docusign-esign" | ||
VERSION = "3.25.1" | ||
# To install the library, run the following | ||
# | ||
# python setup.py install | ||
# | ||
# prerequisite: setuptools | ||
# http://pypi.python.org/pypi/setuptools | ||
|
||
REQUIRES = ["urllib3 >= 1.15", "six >= 1.8.0", "certifi >= 14.05.14", "python-dateutil >= 2.5.3", "setuptools >= 21.0.0", "PyJWT>=1.7.1", "cryptography>=2.5", "nose>=1.3.7"] | ||
|
||
class CleanCommand(Command): | ||
"""Custom clean command to tidy up the project root.""" | ||
user_options = [] | ||
def initialize_options(self): | ||
pass | ||
def finalize_options(self): | ||
pass | ||
def run(self): | ||
os.system('rm -vrf ./build ./dist ./*.pyc ./*.tgz ./*.egg-info') | ||
|
||
this_directory = os.path.abspath(os.path.dirname(__file__)) | ||
with open(os.path.join(this_directory, 'README.md'), encoding='utf-8') as f: | ||
long_description = f.read() | ||
|
||
|
||
setup( | ||
name=NAME, | ||
version=VERSION, | ||
description="DocuSign REST API", | ||
author_email="[email protected]", | ||
url="", | ||
keywords=["Swagger", "DocuSign REST API"], | ||
install_requires=REQUIRES, | ||
packages=find_packages(), | ||
include_package_data=True, | ||
cmdclass={ | ||
'clean': CleanCommand, | ||
}, | ||
long_description=long_description, | ||
long_description_content_type='text/markdown' | ||
) | ||
|
||
|
||
from setuptools import setup, find_packages, Command, os # noqa: H301 | ||
|
||
NAME = "docusign-esign" | ||
VERSION = "3.25.2" | ||
# To install the library, run the following | ||
# | ||
# python setup.py install | ||
# | ||
# prerequisite: setuptools | ||
# http://pypi.python.org/pypi/setuptools | ||
|
||
REQUIRES = ["urllib3 >= 1.15", "six >= 1.8.0", "certifi >= 14.05.14", "python-dateutil >= 2.5.3", "setuptools >= 21.0.0", "PyJWT>=1.7.1", "cryptography>=2.5", "nose>=1.3.7"] | ||
|
||
class CleanCommand(Command): | ||
"""Custom clean command to tidy up the project root.""" | ||
user_options = [] | ||
def initialize_options(self): | ||
pass | ||
def finalize_options(self): | ||
pass | ||
def run(self): | ||
os.system('rm -vrf ./build ./dist ./*.pyc ./*.tgz ./*.egg-info') | ||
|
||
this_directory = os.path.abspath(os.path.dirname(__file__)) | ||
with open(os.path.join(this_directory, 'README.md'), encoding='utf-8') as f: | ||
long_description = f.read() | ||
|
||
|
||
setup( | ||
name=NAME, | ||
version=VERSION, | ||
description="DocuSign REST API", | ||
author_email="[email protected]", | ||
url="", | ||
keywords=["Swagger", "DocuSign REST API"], | ||
install_requires=REQUIRES, | ||
packages=find_packages(), | ||
include_package_data=True, | ||
cmdclass={ | ||
'clean': CleanCommand, | ||
}, | ||
long_description=long_description, | ||
long_description_content_type='text/markdown' | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters