78 lines
2.4 KiB
Python
Executable File
78 lines
2.4 KiB
Python
Executable File
#!/usr/bin/python
|
|
'''
|
|
Licensed to the Apache Software Foundation (ASF) under one
|
|
or more contributor license agreements. See the NOTICE file
|
|
distributed with this work for additional information
|
|
regarding copyright ownership. The ASF licenses this file
|
|
to you under the Apache License, Version 2.0 (the
|
|
"License"); you may not use this file except in compliance
|
|
with the License. You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing,
|
|
software distributed under the License is distributed on an
|
|
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
KIND, either express or implied. See the License for the
|
|
specific language governing permissions and limitations
|
|
under the License.
|
|
'''
|
|
|
|
from setuptools import setup, find_packages
|
|
import os
|
|
import sys
|
|
|
|
"""
|
|
setup module for facebody.
|
|
|
|
Created on 7/3/2015
|
|
|
|
@author: alex
|
|
"""
|
|
|
|
PACKAGE = "aliyunsdkfacebody"
|
|
NAME = "aliyun-python-sdk-facebody"
|
|
DESCRIPTION = "The facebody module of Aliyun Python sdk."
|
|
AUTHOR = "Aliyun"
|
|
AUTHOR_EMAIL = "aliyun-developers-efficiency@list.alibaba-inc.com"
|
|
URL = "http://develop.aliyun.com/sdk/python"
|
|
|
|
TOPDIR = os.path.dirname(__file__) or "."
|
|
VERSION = __import__(PACKAGE).__version__
|
|
|
|
desc_file = open("README.rst")
|
|
try:
|
|
LONG_DESCRIPTION = desc_file.read()
|
|
finally:
|
|
desc_file.close()
|
|
|
|
setup(
|
|
name=NAME,
|
|
version=VERSION,
|
|
description=DESCRIPTION,
|
|
long_description=LONG_DESCRIPTION,
|
|
author=AUTHOR,
|
|
author_email=AUTHOR_EMAIL,
|
|
license="Apache",
|
|
url=URL,
|
|
keywords=["aliyun","sdk","facebody"],
|
|
packages=find_packages(exclude=["tests*"]),
|
|
include_package_data=True,
|
|
platforms="any",
|
|
install_requires=["aliyun-python-sdk-core>=2.11.5",],
|
|
classifiers=(
|
|
"Development Status :: 4 - Beta",
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: Apache Software License",
|
|
"Programming Language :: Python",
|
|
"Programming Language :: Python :: 2.6",
|
|
"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",
|
|
"Topic :: Software Development",
|
|
)
|
|
|
|
) |