Basic boilerplate.
This commit is contained in:
commit
b1fc79570b
4
.gitignore
vendored
Normal file
4
.gitignore
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
*~
|
||||
.*.sw?
|
||||
*.egg-info
|
||||
*.pyc
|
4
.testr.conf
Normal file
4
.testr.conf
Normal file
@ -0,0 +1,4 @@
|
||||
[DEFAULT]
|
||||
test_command=${PYTHON:-python} -m subunit.run discover $LISTOPT $IDOPTION
|
||||
test_id_option=--load-list $IDFILE
|
||||
test_list_option=--list
|
5
README.rst
Normal file
5
README.rst
Normal file
@ -0,0 +1,5 @@
|
||||
A backport of traceback to older supported Pythons.
|
||||
|
||||
>>> import traceback2 as traceback
|
||||
|
||||
Profit.
|
0
requirements.txt
Normal file
0
requirements.txt
Normal file
34
setup.cfg
Normal file
34
setup.cfg
Normal file
@ -0,0 +1,34 @@
|
||||
[metadata]
|
||||
name = traceback2
|
||||
version = 0.0.1
|
||||
summary = Backports of the traceback module
|
||||
description-file =
|
||||
README.rst
|
||||
author = Testing-cabal
|
||||
author-email = testing-cabal@lists.launchpad.net
|
||||
home-page = https://github.com/testing-cabal/traceback2
|
||||
classifier =
|
||||
Development Status :: 6 - Mature
|
||||
Intended Audience :: Developers
|
||||
License :: OSI Approved :: Python Software Foundation License
|
||||
Operating System :: OS Independent
|
||||
Programming Language :: Python
|
||||
Programming Language :: Python :: 2
|
||||
Programming Language :: Python :: 2.6
|
||||
Programming Language :: Python :: 2.7
|
||||
Programming Language :: Python :: 3
|
||||
Programming Language :: Python :: 3.2
|
||||
Programming Language :: Python :: 3.3
|
||||
Programming Language :: Python :: 3.4
|
||||
Topic :: Software Development
|
||||
|
||||
[files]
|
||||
packages =
|
||||
traceback2
|
||||
|
||||
[wheel]
|
||||
universal = 1
|
||||
|
||||
[pbr]
|
||||
autodoc_index_modules = 0
|
||||
warnerrors = true
|
6
setup.py
Normal file
6
setup.py
Normal file
@ -0,0 +1,6 @@
|
||||
import setuptools
|
||||
|
||||
setuptools.setup(
|
||||
setup_requires=['pbr'],
|
||||
pbr=True)
|
||||
|
1
test-requirements.txt
Normal file
1
test-requirements.txt
Normal file
@ -0,0 +1 @@
|
||||
unittest2
|
0
traceback2/__init__.py
Normal file
0
traceback2/__init__.py
Normal file
0
traceback2/tests/__init__.py
Normal file
0
traceback2/tests/__init__.py
Normal file
Loading…
x
Reference in New Issue
Block a user