17 Star 46 Fork 11

007 / dingtalk-sdk

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
setup.py 2.68 KB
一键复制 编辑 原始数据 按行查看 历史
007 提交于 2020-08-05 18:40 . Bump version: 1.3.7 → 1.3.8
#! /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'],
},
)
Python
1
https://gitee.com/007gzs/dingtalk-sdk.git
git@gitee.com:007gzs/dingtalk-sdk.git
007gzs
dingtalk-sdk
dingtalk-sdk
master

搜索帮助