-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·41 lines (35 loc) · 1.17 KB
/
Copy pathsetup.py
File metadata and controls
executable file
·41 lines (35 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#! /usr/bin/env python
""" SMS framework: Yunpian provider """
from setuptools import setup, find_packages
setup(
# http://pythonhosted.org/setuptools/setuptools.html
name='smsframework-yunpian',
version='0.0.1-0',
author='Ilya Vihtinsky',
author_email='iliaviht@gmail.com',
url='https://github.com/vihtinsky/py-smsframework-yunpian',
license='BSD',
description=__doc__,
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
keywords=['sms', 'message', 'notification', 'receive', 'send', 'yunpian'],
packages=find_packages(),
scripts=[],
entry_points={},
install_requires=[
'smsframework >= 0.0.9',
'yunpian-python-sdk'
],
test_suite='nose.collector',
include_package_data=True,
platforms='any',
classifiers=[
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Operating System :: OS Independent'
],
)