1 Star 0 Fork 19

liyun/gmssl-python

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
setup.py 972 Bytes
一键复制 编辑 原始数据 按行查看 历史
段洪义 提交于 2018-07-22 11:51 . fixbug
#coding:utf-8
import os
import sys
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
readme_file = os.path.join(here, 'README.md')
def read_text(file_path):
"""
fix the default operating system encoding is not utf8.
"""
if sys.version_info.major < 3:
with open(file_path) as f:
return f.read()
with open(file_path, encoding="utf8") as f:
return f.read()
README = read_text(os.path.join(here, 'README.md'))
requires = [
]
test_requirements = [
]
setup(
name='gmssl',
description='Pure-Python SM2/SM3/SM4 implementation',
version='3.2.1',
author='duanhongyi',
author_email='duanhyi@gmail.com',
packages=find_packages(),
include_package_data=True,
long_description=README,
url='https://github.com/duanhongyi/gmssl',
install_requires=requires,
tests_require=test_requirements,
platforms='all platform',
license='BSD',
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/liyun8/gmssl-python.git
git@gitee.com:liyun8/gmssl-python.git
liyun8
gmssl-python
gmssl-python
master

搜索帮助