Skip to content

Commit f634074

Browse files
committed
Initial boilerplate
0 parents  commit f634074

File tree

6 files changed

+59
-0
lines changed

6 files changed

+59
-0
lines changed

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
*~
2+
.*.sw?
3+
*.egg-info
4+
*.pyc
5+
*.egg

.testr.conf

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[DEFAULT]
2+
test_command=${PYTHON:-python} -m subunit.run discover $LISTOPT $IDOPTION
3+
test_id_option=--load-list $IDFILE
4+
test_list_option=--list
5+

README.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
A backport of linecache to older supported Pythons.
2+
3+
>>> import linecache2 as linecache
4+
5+
Profit.

setup.cfg

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
[metadata]
2+
name = linecache2
3+
version = 0.0.1
4+
summary = Backports of the linecache module
5+
description-file =
6+
README.rst
7+
author = Testing-cabal
8+
author-email = [email protected]
9+
home-page = https://github.com/testing-cabal/linecache2
10+
classifier =
11+
Development Status :: 6 - Mature
12+
Intended Audience :: Developers
13+
License :: OSI Approved :: Python Software Foundation License
14+
Operating System :: OS Independent
15+
Programming Language :: Python
16+
Programming Language :: Python :: 2
17+
Programming Language :: Python :: 2.6
18+
Programming Language :: Python :: 2.7
19+
Programming Language :: Python :: 3
20+
Programming Language :: Python :: 3.2
21+
Programming Language :: Python :: 3.3
22+
Programming Language :: Python :: 3.4
23+
Topic :: Software Development
24+
25+
[files]
26+
packages =
27+
linecache2
28+
29+
[wheel]
30+
universal = 1
31+
32+
[pbr]
33+
autodoc_index_modules = 0
34+
warnerrors = true
35+

setup.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import setuptools
2+
3+
setuptools.setup(
4+
setup_requires=['pbr'],
5+
pbr=True)
6+
7+

test-requirements.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
fixtures
2+
unittest2

0 commit comments

Comments
 (0)