5 Star 37 Fork 6

trzsz / trzsz

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
setup.py 2.80 KB
一键复制 编辑 原始数据 按行查看 历史
Lonny Wong 提交于 2023-06-04 13:12 . copyright add email
# MIT License
#
# Copyright (c) 2023 Lonny Wong <lonnywong@qq.com>
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
import re
from setuptools import setup
VERSION_REGEX = r'[ \t]*__version__[ \t]*=[ \t]*[\'"](\d+\.\d+\.\d+)[\'"]'
with open('trzsz/__version__.py', 'r') as file:
version = re.search(VERSION_REGEX, file.read()).group(1)
with open('README.md', 'rb') as file:
long_description = file.read().decode('utf8')
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: MacOS',
'Operating System :: POSIX',
'Operating System :: POSIX :: Linux',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Utilities',
]
install_requires = [
'trzsz-libs == ' + version,
'trzsz-svr == ' + version,
]
extras_require = {'iterm2': ['trzsz-iterm2 == ' + version]}
setup(
name='trzsz',
version=version,
author='Lonny Wong',
author_email='lonnywong@qq.com',
packages=['trzsz'],
long_description=long_description,
long_description_content_type='text/markdown',
url='https://trzsz.github.io',
install_requires=install_requires,
extras_require=extras_require,
license='MIT License',
classifiers=classifiers,
keywords='trzsz trz tsz lrzsz rz sz tmux iTerm2 progressbar',
zip_safe=False,
description='trzsz is a simple file transfer tools, '
'similar to lrzsz ( rz / sz ) and compatible with tmux, '
'which works with iTerm2 and has a nice progress bar.',
)
Python
1
https://gitee.com/trzsz/trzsz.git
git@gitee.com:trzsz/trzsz.git
trzsz
trzsz
trzsz
main

搜索帮助