|
1 | | -# coding: utf-8 |
2 | | - |
| 1 | +# coding: utf-8 |
| 2 | + |
3 | 3 | """ |
4 | 4 | DocuSign REST API |
5 | 5 |
|
|
9 | 9 | |
10 | 10 | Generated by: https://github.com/swagger-api/swagger-codegen.git |
11 | 11 | """ |
12 | | - |
13 | | - |
14 | | -from setuptools import setup, find_packages, Command, os # noqa: H301 |
15 | | - |
16 | | -NAME = "docusign-esign" |
17 | | -VERSION = "3.25.1" |
18 | | -# To install the library, run the following |
19 | | -# |
20 | | -# python setup.py install |
21 | | -# |
22 | | -# prerequisite: setuptools |
23 | | -# http://pypi.python.org/pypi/setuptools |
24 | | - |
25 | | -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"] |
26 | | - |
27 | | -class CleanCommand(Command): |
28 | | - """Custom clean command to tidy up the project root.""" |
29 | | - user_options = [] |
30 | | - def initialize_options(self): |
31 | | - pass |
32 | | - def finalize_options(self): |
33 | | - pass |
34 | | - def run(self): |
35 | | - os.system('rm -vrf ./build ./dist ./*.pyc ./*.tgz ./*.egg-info') |
36 | | - |
37 | | -this_directory = os.path.abspath(os.path.dirname(__file__)) |
38 | | -with open(os.path.join(this_directory, 'README.md'), encoding='utf-8') as f: |
39 | | - long_description = f.read() |
40 | | - |
41 | | - |
42 | | -setup( |
43 | | - name=NAME, |
44 | | - version=VERSION, |
45 | | - description="DocuSign REST API", |
46 | | - |
47 | | - url="", |
48 | | - keywords=["Swagger", "DocuSign REST API"], |
49 | | - install_requires=REQUIRES, |
50 | | - packages=find_packages(), |
51 | | - include_package_data=True, |
52 | | - cmdclass={ |
53 | | - 'clean': CleanCommand, |
54 | | - }, |
55 | | - long_description=long_description, |
56 | | - long_description_content_type='text/markdown' |
57 | | -) |
| 12 | + |
| 13 | + |
| 14 | +from setuptools import setup, find_packages, Command, os # noqa: H301 |
| 15 | + |
| 16 | +NAME = "docusign-esign" |
| 17 | +VERSION = "3.25.2" |
| 18 | +# To install the library, run the following |
| 19 | +# |
| 20 | +# python setup.py install |
| 21 | +# |
| 22 | +# prerequisite: setuptools |
| 23 | +# http://pypi.python.org/pypi/setuptools |
| 24 | + |
| 25 | +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"] |
| 26 | + |
| 27 | +class CleanCommand(Command): |
| 28 | + """Custom clean command to tidy up the project root.""" |
| 29 | + user_options = [] |
| 30 | + def initialize_options(self): |
| 31 | + pass |
| 32 | + def finalize_options(self): |
| 33 | + pass |
| 34 | + def run(self): |
| 35 | + os.system('rm -vrf ./build ./dist ./*.pyc ./*.tgz ./*.egg-info') |
| 36 | + |
| 37 | +this_directory = os.path.abspath(os.path.dirname(__file__)) |
| 38 | +with open(os.path.join(this_directory, 'README.md'), encoding='utf-8') as f: |
| 39 | + long_description = f.read() |
| 40 | + |
| 41 | + |
| 42 | +setup( |
| 43 | + name=NAME, |
| 44 | + version=VERSION, |
| 45 | + description="DocuSign REST API", |
| 46 | + |
| 47 | + url="", |
| 48 | + keywords=["Swagger", "DocuSign REST API"], |
| 49 | + install_requires=REQUIRES, |
| 50 | + packages=find_packages(), |
| 51 | + include_package_data=True, |
| 52 | + cmdclass={ |
| 53 | + 'clean': CleanCommand, |
| 54 | + }, |
| 55 | + long_description=long_description, |
| 56 | + long_description_content_type='text/markdown' |
| 57 | +) |
0 commit comments