Jelajahi Sumber

增加打包文件

wangxili 4 tahun lalu
induk
melakukan
14239d385c
4 mengubah file dengan 81 tambahan dan 0 penghapusan
  1. 24 0
      LICENSE.md
  2. 5 0
      README.md
  3. 3 0
      setup.cfg
  4. 49 0
      setup.py

+ 24 - 0
LICENSE.md

@@ -0,0 +1,24 @@
+# License
+
+Copyright (c) 2020, AM.software
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are met:
+
+Redistributions of source code must retain the above copyright notice, this
+list of conditions and the following disclaimer.
+Redistributions in binary form must reproduce the above copyright notice, this
+list of conditions and the following disclaimer in the documentation and/or
+other materials provided with the distribution.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
+ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
+FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
+CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

+ 5 - 0
README.md

@@ -0,0 +1,5 @@
+DingTalk(钉钉) Python SDK
+====================
+钉钉开放平台第三方企业应用服务端API.
+
+API文档请参阅 [钉钉开放平台文档](https://ding-doc.dingtalk.com/doc#/isv/nbcs7r)

+ 3 - 0
setup.cfg

@@ -0,0 +1,3 @@
+[metadata]
+license_file = LICENSE.md
+description-file = README.md

+ 49 - 0
setup.py

@@ -0,0 +1,49 @@
+#!/usr/bin/env python
+# -*- coding: utf-8 -*-
+import os
+import re
+from io import open
+
+from setuptools import setup
+
+
+with open('README.md') as f:
+    long_description = f.read()
+
+
+setup(
+    name='dingtalk-sdk-python',
+    version='1.0.1',
+    url='http://git.attnserver.com/wxl/dingtalk-sdk-python',
+    license='BSD',
+    description=('DingTalk Python SDK'),
+    long_description=long_description,
+    long_description_content_type='text/markdown',
+    keywords=('dingtalk python'),
+    author='AM.software',
+    author_email='wangxl@amtxtx.com',
+    packages=['dingtalk_sdk_python'],
+    zip_safe=False,
+    classifiers=[
+        'Development Status :: 4 - Beta',
+        'Environment :: Web Environment',
+        'Framework :: Django',
+        'Framework :: Django :: 1.9',
+        'Framework :: Django :: 1.10',
+        'Framework :: Django :: 1.11',
+        'Framework :: Django :: 2.0',
+        'Framework :: Django :: 2.1',
+        'Framework :: Django :: 2.2',
+        'Intended Audience :: Developers',
+        'License :: OSI Approved :: BSD License',
+        'Operating System :: OS Independent',
+        'Programming Language :: Python',
+        'Programming Language :: Python :: 2',
+        'Programming Language :: Python :: 2.7',
+        'Programming Language :: Python :: 3',
+        'Programming Language :: Python :: 3.5',
+        'Programming Language :: Python :: 3.6',
+        'Programming Language :: Python :: 3.7',
+        'Topic :: Internet :: WWW/HTTP',
+    ]
+)