forked from alipay/global-open-sdk-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (44 loc) · 1.31 KB
/
setup.py
File metadata and controls
47 lines (44 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/usr/bin/env python
from setuptools import setup, find_packages
'''
setup module for core.
Created on 5/20/2020
@author: songlin.xiesl、guangling.zgl
'''
NAME = "global-alipay-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"
VERSION = "1.0.0"
'''
only python2 need enum34、pytz
'''
requires = ["enum34", "pytz", "pycryptodome", "rsa"]
setup(
name=NAME,
version=VERSION,
description=DESCRIPTION,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
license="MIT",
url=URL,
keywords=["global", "alipay", "sdk"],
packages=find_packages(where='*'),
include_package_data=True,
platforms='any',
install_requires=requires,
classifiers=(
'Intended Audience :: Developers',
'License :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development',
)
)