1 Star 0 Fork 0

stoneqp/pdbpp

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
setup.py 2.44 KB
一键复制 编辑 原始数据 按行查看 历史
Daniel Hahler 提交于 2020-11-09 04:04 . ci/tox: test with Python 3.9 (#417)
from __future__ import print_function
from sysconfig import get_path
import io
import os.path
from setuptools import setup
readme_path = os.path.join(os.path.dirname(__file__), 'README.rst')
changelog_path = os.path.join(os.path.dirname(__file__), 'CHANGELOG')
readme = io.open(readme_path, encoding='utf-8').read()
changelog = io.open(changelog_path, encoding='utf-8').read()
long_description = readme + '\n\n' + changelog
setup(
name='pdbpp',
use_scm_version=True,
author='Antonio Cuni',
author_email='anto.cuni@gmail.com',
py_modules=['pdbpp', '_pdbpp_path_hack.pdb'],
package_dir={"": "src"},
url='https://github.com/pdbpp/pdbpp',
project_urls={
'Bug Tracker': 'https://github.com/pdbpp/pdbpp/issues',
'Source Code': 'https://github.com/pdbpp/pdbpp',
},
license='BSD',
platforms=['unix', 'linux', 'osx', 'cygwin', 'win32'],
description='pdb++, a drop-in replacement for pdb',
long_description=long_description,
keywords='pdb debugger tab color completion',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Programming Language :: Python',
'Topic :: Utilities',
'Topic :: Software Development :: Debuggers',
],
install_requires=[
"fancycompleter @ git+https://github.com/pdbpp/fancycompleter@master#egg=fancycompleter", # noqa: E501
"wmctrl",
"pygments",
"six",
],
extras_require={
'funcsigs': ["funcsigs"],
'testing': [
'funcsigs',
'pytest',
],
},
setup_requires=['setuptools_scm'],
data_files=[
(
os.path.relpath(get_path("purelib"), get_path("data")),
["pdbpp_hijack_pdb.pth"],
),
],
)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/stoneqp/pdbpp.git
git@gitee.com:stoneqp/pdbpp.git
stoneqp
pdbpp
pdbpp
master

搜索帮助

23e8dbc6 1850385 7e0993f3 1850385