def main():
check_python_version()
solent_packages = sorted([pname for pname in find_packages() if (
pname == 'solent' or pname.startswith('solent.'))])
setup(
name='solent',
packages=solent_packages,
version=SOLENT_VERSION,
description='Toolkit for creating message-driven systems',
url='https://github.com/solent-eng/solent',
download_url='https://github.com/solent-eng/solent/tarball/%s'%(
SOLENT_VERSION),
keywords=[
'solent',
'eng',
'console',
'term',
'networking',
'async'],
classifiers=[],
include_package_data=True,
)
评论列表
文章目录