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