-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
59 lines (55 loc) · 1.79 KB
/
Copy pathsetup.py
File metadata and controls
59 lines (55 loc) · 1.79 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
48
49
50
51
52
53
54
55
56
57
58
59
# -*- coding: utf-8 -*-
# Copyright Yeepay.com, Inc. or its affiliates. All Rights Reserved.
# SPDX-License-Identifier: Apache-2.0.
from setuptools import find_packages, setup
with open("README.MD", "r") as f:
long_description = f.read()
setup(
name='yop-python-sdk',
version='4.3.0',
description='YOP SDK based on the YOP Common Runtime',
long_description=long_description,
long_description_content_type='text/markdown',
author='YOP Team',
author_email='yop@yeepay.com',
url='https://github.com/yop-platform/yop-python-sdk',
license='Apache License',
platforms=["all"],
packages=find_packages(),
classifiers=[
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Natural Language :: Chinese (Simplified)',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Software Development :: Libraries'
],
# 务必删除 crypto 和 pycrypto
# pip3 uninstall crypto
# pip3 uninstall pycrypto
# pip3 install pycryptodome
install_requires=[
'crcmod>=1.7',
'future>=0.18.2',
'pycryptodome>=3.14.1',
'pyOpenSSL>=22.0.0',
'python-dateutil>=2.8.2',
'requests_toolbelt>=0.9.1',
'simplejson>=3.17.6',
],
# python_requires='~=2.7,~=3.7',
setup_requires=[
'pytest-runner',
],
tests_require=[
'pytest',
'pytest-html',
],
)