代码拉取完成,页面将自动刷新
#! /usr/bin/env python
# encoding: utf-8
"""A setuptools based setup module.
See:
https://packaging.python.org/en/latest/distributing.html
https://github.com/pypa/sampleproject
"""
# Always prefer setuptools over distutils
from setuptools import setup
from setuptools.command.test import test as TestCommand
# To use a consistent encoding
from codecs import open
from os import path
import sys
import ssl
try:
ssl._create_default_https_context = ssl._create_unverified_context
except Exception:
pass
here = path.abspath(path.dirname(__file__))
class PyTest(TestCommand):
user_options = [('pytest-args=', 'a', "Arguments to pass to py.test")]
def initialize_options(self):
TestCommand.initialize_options(self)
self.pytest_args = []
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = []
self.test_suite = True
def run_tests(self):
import pytest
errno = pytest.main(self.pytest_args)
sys.exit(errno)
cmdclass = {}
cmdclass['test'] = PyTest
# Get the long description from the README file
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
with open('requirements.txt') as f:
requirements = [line for line in f.read().splitlines() if line]
setup(
name='dingtalk-sdk',
version='1.3.8',
keywords='dingding, ding, dtalk, dingtalk, SDK',
description='DingTalk SDK for Python',
long_description=long_description,
url='https://github.com/007gzs/dingtalk-sdk',
author='007gzs',
author_email='007gzs@sina.com',
license='LGPL v3',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: '
'GNU Lesser General Public License v3 (LGPLv3)',
'Programming Language :: Python :: 2',
'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',
],
packages=[
'dingtalk',
'dingtalk.core',
'dingtalk.crypto',
'dingtalk.storage',
'dingtalk.model',
'dingtalk.client',
'dingtalk.client.api'
],
install_requires=requirements,
zip_safe=False,
include_package_data=True,
tests_require=[
'pytest',
'redis',
'pymemcache',
],
cmdclass=cmdclass,
extras_require={
'cryptography': ['cryptography'],
'pycrypto': ['pycrypto'],
},
)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。