2 Star 11 Fork 1

dairoot / school-api

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
setup.py 1.45 KB
一键复制 编辑 原始数据 按行查看 历史
dairoot 提交于 2020-01-15 16:16 . 兼容他校重定向问题
#!/usr/bin/env python
# coding=utf-8
from setuptools import setup, find_packages
with open('README.md', 'rb') as f:
long_description = f.read().decode('utf-8').split("## User permissions")[0]
setup(
name="School-Api",
author="dairoot",
version="1.5.6",
license='MIT',
author_email="623815825@qq.com",
description="School SDK for Python",
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/dairoot/school-api',
packages=find_packages(),
package_data={'school_api': ['check_code/theta.dat'], },
include_package_data=True,
platforms='any',
zip_safe=False,
install_requires=[
'six',
'requests',
'redis',
'bs4',
'pillow',
'numpy'
],
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)
Python
1
https://gitee.com/dairoott/school-api.git
git@gitee.com:dairoott/school-api.git
dairoott
school-api
school-api
master

搜索帮助