Skip to content

Commit ed902a1

Browse files
authored
Merge pull request #20 from alipay/update-setup
包上传至pypi
2 parents ba2c518 + 457fea1 commit ed902a1

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

com/__init__.py

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1 @@
1-
#!/usr/bin/env python
2-
# -*- coding: utf-8 -*-
3-
"""
4-
__inti__.py
5-
"""
6-
name = "global-alipay-sdk-python"
7-
__version__ = "1.0.0"
1+

setup.cfg

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[metadata]
2+
name = global-alipay-sdk-python
3+
version = 1.3.7
4+
5+
[options]
6+
packages = find:

setup.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
Created on 5/20/2020
88
@author: songlin.xiesl、guangling.zgl
99
'''
10-
NAME = "global-alipay-sdk-python"
10+
NAME = "global-open-sdk-python"
1111
DESCRIPTION = "The global alipay gateway SDK for Python."
12-
AUTHOR = "songlin.xiesl"
13-
AUTHOR_EMAIL = "songlin.xiesl@alibaba-inc.com"
14-
URL = "https://github.com/alipay/global-alipay-sdk-python"
15-
VERSION = "1.0.0"
12+
AUTHOR = "guodong.wzj"
13+
AUTHOR_EMAIL = "wangzunjiao.wzj@digital-engine.com"
14+
URL = "https://github.com/alipay/global-open-sdk-python"
15+
VERSION = "1.3.7"
1616
'''
1717
only python2 need enum34、pytz
1818
'''
@@ -27,13 +27,13 @@
2727
license="MIT",
2828
url=URL,
2929
keywords=["global", "alipay", "sdk"],
30-
packages=find_packages(where='*'),
30+
packages=find_packages(exclude=["example"]),
3131
include_package_data=True,
3232
platforms='any',
3333
install_requires=requires,
3434
classifiers=[
3535
'Intended Audience :: Developers',
36-
'License :: MIT License',
36+
'License :: OSI Approved :: MIT License',
3737
'Programming Language :: Python',
3838
'Programming Language :: Python :: 2.7',
3939
'Programming Language :: Python :: 3.2',

0 commit comments

Comments
 (0)