12345678910111213141516171819202122232425262728293031 |
- # -*- coding: utf-8 -*-
- from setuptools import setup, find_packages
- setup(
- name='authen.acloud',
- version=0.1,
- url='http://git.trops-global.com/authen/acloud.git',
- license='GPL',
- author='authen',
- author_email='295002887@qq.com',
- description='acloud dev tools',
- long_description=__doc__,
- packages=find_packages(exclude=['ez_setup']),
- namespace_packages=['authen'],
- include_package_data=True,
- install_requires=[
- 'setuptools',
- 'aliyun-python-sdk-core-v3'
- ],
- classifiers=[
- "Framework :: Plone",
- "Framework :: Zope2",
- "Framework :: Zope3",
- "Programming Language :: Python",
- "Topic :: Software Development :: Libraries :: Python Modules",
- ],
- entry_points="""
- # -*- Entry points: -*-
- """
- )
|