Skip to content

Commit c46eb4b

Browse files
committed
-
1 parent 108a90f commit c46eb4b

File tree

4 files changed

+79
-0
lines changed

4 files changed

+79
-0
lines changed

.coveragerc

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
[run]
2+
branch = True
3+
source =
4+
python_toolbox
5+
6+
[report]
7+
# Gotta ignore errors because I create temporary code files:
8+
ignore_errors = True
9+
10+
[html]
11+
directory = .coverage_html_report

README.markdown

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
[Documentation](http://docs.pythontoolbox.org)
2+
3+
[Installation](http://docs.pythontoolbox.org/intro/installation/index.html)
4+
5+
6+
# What is the Python Toolbox? #
7+
8+
blocktodo: explain
9+
10+
11+
# Mailing lists #
12+
13+
All general discussion happens at **[the Python Toolbox Google Group](https://groups.google.com/forum/#!forum/python-toolbox)**. If you need help with the Python Toolbox, you're welcome to post your question and we'll try to help you.
14+
15+
The development mailing list is **[python-toolbox-dev](https://groups.google.com/forum/#!forum/garlicsim-dev)**. This is where we discuss the development of the Python Toolbox itself.
16+
17+
18+
# Python versions #
19+
20+
The Python Toolbox supports Python versions 2.5, 2.6, 2.7, 3.1 and 3.2.
21+
22+
blocktodo: detail PyPy.
23+
24+
25+
# Current state #
26+
27+
The Python Toolbox is at version (blocktodo), which is an alpha release. At this experimental stage of the project, backward compatibility will _not_ be maintained.
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
#!wing
2+
#!version=4.0
3+
##################################################################
4+
# Wing IDE project file #
5+
##################################################################
6+
[project attributes]
7+
proj.directory-list = [{'dirloc': loc('../../..'),
8+
'excludes': [u'nosetests.xml',
9+
u'garlicsim_wx/py2exe_dist',
10+
u'.coverage_html_report',
11+
u'build'],
12+
'filter': '*',
13+
'include_hidden': False,
14+
'recursive': True,
15+
'watch_for_changes': True}]
16+
proj.file-type = 'shared'
17+
proj.home-dir = loc('../../..')
18+
proj.main-file = loc('../../../run_gui.py')
19+
proj.pypath = {None: ('custom',
20+
'${WING:PROJECT_HOME}'),
21+
loc('../../../run_tests.py'): ('custom',
22+
'')}
23+
proj.shared-attribute-names = ['proj.shared-attribute-names',
24+
'proj.directory-list',
25+
'proj.file-list',
26+
'proj.file-type',
27+
'proj.main-file',
28+
'testing.test-file-list',
29+
'testing.auto-test-file-specs',
30+
'testing.test-framework',
31+
'proj.home-dir',
32+
'proj.pypath']
33+
testing.auto-test-file-specs = ('test_garlicsim/test*.py',
34+
'test_garlicsim_lib/test*.py',
35+
'test_garlicsim_wx/test*.py')
36+
testing.test-framework = {None: 'nose'}

misc/__init__.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Copyright 2009-2011 Ram Rachum.
2+
# This program is distributed under the LGPL2.1 license.
3+
4+
'''Miscellaenous stuff.'''
5+

0 commit comments

Comments
 (0)