-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (35 loc) · 907 Bytes
/
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
# -*- coding:utf-8 -*-
"""
@author: LQG
@mail: [email protected]
@file: config.py
@time: 2021/11/10 22:59
@desc: PIP 上传文件
"""
from setuptools import setup, find_packages
from upi import __version__
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name='upi',
version=__version__,
license='MIT Licence',
author="linqigu",
author_email="[email protected]",
description="pay sdk",
url='https://github.com/linqigu/upi',
download_url='https://github.com/linqigu/upi',
# 关键词
keywords=['upi', 'pay', 'wxPay'],
python_requires='>=3.6',
install_requires=[
'requests', 'bs4', 'lxml'
],
platforms='any',
packages=find_packages(),
long_description=long_description,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
],
)