-
Notifications
You must be signed in to change notification settings - Fork 378
/
setup.py
40 lines (36 loc) · 1.1 KB
/
setup.py
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
#!/usr/bin/env python
# coding: utf-8
"""
setup.py
~~~~~~~~~~
"""
from setuptools import setup
import unittest
def alipay_test_suite():
test_loader = unittest.TestLoader()
test_suite = test_loader.discover('tests')
return test_suite
setup(
name="python-alipay-sdk",
version="3.3.0",
author="fzlee",
author_email="hi@ifconfiger.com",
description="Python SDK for AliPay, RSA is the only sign method we support",
license="BSD",
keywords="python sdk alipay",
url="https://github.com/fzlee/alipay",
packages=['alipay'],
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"License :: OSI Approved :: BSD License",
"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",
],
install_requires=["pycryptodomex>=3.15.0", "pyOpenSSL>=22.0.0"],
test_suite="setup.alipay_test_suite"
)