#!/usr/bin/env python# -*- encoding: utf-8 -*-fromsetuptoolsimportsetup,find_packagessetup(name='xnrpc',version='1.0.0',packages=find_packages(),# Project uses , so ensureinstall_requires=["gevent>=1.1.2","zerorpc>=0.6.0",],description='simple rpc based on zerorpc and gevent',long_description=open("README.rst").read(),url='https://github.com/yidao620c/xnrpc',author='Xiong Neng',author_email='yidao620@gmail.com',license='Apache License 2.0',classifiers=['Development Status :: 4 - Beta','Intended Audience :: Developers','Topic :: Software Development :: Build Tools','License :: OSI Approved :: MIT License','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',],package_data={# If any package contains *.txt or *.rst files, include them:'':['*.txt','*.rst'],# include any *.msg files found in the 'test' package, too:'test':['*.msg'],},# The data_files option can be used to specify additional files# needed by the module distribution: configuration files,# message catalogs, data filesdata_files=[('etc/xnrpc',['etc/xnrpc.conf']),],cmdclass={'install':CustomInstallCommand},keywords=['xnrpc','gevent','zerorpc'],entry_points={# "xnrpc.registered_commands": [# "upload = xnrpc.commands.upload:main",# "register = xnrpc.commands.register:main",# ],"console_scripts":["xnrpc = xnrpc.__main__:main",],},)