setup.py 813 B

12345678910111213141516171819202122232425262728293031
  1. # -*- coding: utf-8 -*-
  2. from setuptools import setup, find_packages
  3. setup(
  4. name='authen.acloud',
  5. version=0.12,
  6. url='http://git.trops-global.com/authen/acloud.git',
  7. license='GPL',
  8. author='authen',
  9. author_email='295002887@qq.com',
  10. description='acloud dev tools',
  11. long_description=__doc__,
  12. packages=find_packages(exclude=['ez_setup']),
  13. namespace_packages=['authen'],
  14. include_package_data=True,
  15. install_requires=[
  16. 'setuptools',
  17. 'aliyun-python-sdk-core-v3'
  18. ],
  19. classifiers=[
  20. "Framework :: Plone",
  21. "Framework :: Zope2",
  22. "Framework :: Zope3",
  23. "Programming Language :: Python",
  24. "Topic :: Software Development :: Libraries :: Python Modules",
  25. ],
  26. entry_points="""
  27. # -*- Entry points: -*-
  28. """
  29. )