diff --git a/setup.py b/setup.py index 6fcd61c..9f821c9 100644 --- a/setup.py +++ b/setup.py @@ -1,27 +1,34 @@ #!/usr/bin/env python from setuptools import setup, find_packages +from pathlib import Path + ''' setup module for core. Created on 5/20/2020 @author: songlin.xiesl、guangling.zgl ''' -NAME = "global-alipay-sdk-python" +NAME = "global_open_sdk_python" DESCRIPTION = "The global alipay gateway SDK for Python." AUTHOR = "songlin.xiesl" AUTHOR_EMAIL = "songlin.xiesl@alibaba-inc.com" -URL = "https://github.com/alipay/global-alipay-sdk-python" +URL = "https://github.com/alipay/global-open-sdk-python" VERSION = "1.0.0" ''' only python2 need enum34、pytz ''' requires = ["enum34", "pytz", "pycryptodome", "rsa"] +this_directory = Path(__file__).parent +long_description = (this_directory / "README.md").read_text() + setup( name=NAME, version=VERSION, description=DESCRIPTION, + long_description=long_description, + long_description_content_type='text/markdown', author=AUTHOR, author_email=AUTHOR_EMAIL, license="MIT",