Initial boilerplate

This commit is contained in:
Robert Collins 2015-01-13 17:03:19 +13:00
commit f634074863
6 changed files with 59 additions and 0 deletions

5
.gitignore vendored Normal file
View File

@ -0,0 +1,5 @@
*~
.*.sw?
*.egg-info
*.pyc
*.egg

5
.testr.conf Normal file
View File

@ -0,0 +1,5 @@
[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
View File

@ -0,0 +1,5 @@
A backport of linecache to older supported Pythons.
>>> import linecache2 as linecache
Profit.

35
setup.cfg Normal file
View File

@ -0,0 +1,35 @@
[metadata]
name = linecache2
version = 0.0.1
summary = Backports of the linecache module
description-file =
README.rst
author = Testing-cabal
author-email = testing-cabal@lists.launchpad.net
home-page = https://github.com/testing-cabal/linecache2
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 =
linecache2
[wheel]
universal = 1
[pbr]
autodoc_index_modules = 0
warnerrors = true

7
setup.py Normal file
View File

@ -0,0 +1,7 @@
import setuptools
setuptools.setup(
setup_requires=['pbr'],
pbr=True)

2
test-requirements.txt Normal file
View File

@ -0,0 +1,2 @@
fixtures
unittest2