Skip to content

Commit

Permalink
Fixes for PyPI readiness.
Browse files Browse the repository at this point in the history
  • Loading branch information
rpappalax committed Jul 15, 2014
1 parent a93bcd3 commit d678b8f
Show file tree
Hide file tree
Showing 9 changed files with 40 additions and 11 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@
.swp
/.idea
*.BAK
.DS_Store

7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ Python class to provide useful logging, test run data and summary statistics for
- see: [Sample output](https://github.com/rpappalax/test-out/blob/master/Examples/console_log_simple.txt)

```
import test_out
import time
from test_out import TestOut
tout = TestOut()
Expand All @@ -30,6 +31,7 @@ for i in xrange(1, 6):
# your result must be: 'PASS', 'FAIL' or 'ERROR'
# generating random for this example:
result = tout.get_result_random()
time.sleep(2)
tout.test_end(result)
Expand All @@ -48,7 +50,8 @@ tout.write_result_summary()
-see: [Sample output](https://github.com/rpappalax/test-out/blob/master/Examples/console_log_custom.txt)

```
import test_out
import time
from test_out import TestOut
tout = TestOut()
Expand Down
Binary file added dist/test-out-0.1.3.tar.gz
Binary file not shown.
11 changes: 5 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
#!/usr/bin/env python

from setuptools import setup
from setuptools import setup, find_packages

setup(
name = "test-out",
version = "1.0.0",
version = "0.1.3",
description = "Python class to provide helpful logging, test run data and summary statistics for automated tests.",
author = "Richard Pappalardo",
author_email = "[email protected]",
url = "https://github.com/rpappalax/test-out",
install_requires = [],
packages = [],
scripts = [],
packages = find_packages(),
keywords = ['testing', 'logging', 'reporting', 'stats'],
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 2",
Expand All @@ -20,6 +20,5 @@
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
],
keywords = ['testing', 'logging', 'reporting', 'stats'],
]
)
18 changes: 18 additions & 0 deletions test_out.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
Metadata-Version: 1.1
Name: test-out
Version: 0.1.3
Summary: Python class to provide helpful logging, test run data and summary statistics for automated tests.
Home-page: https://github.com/rpappalax/test-out
Author: Richard Pappalardo
Author-email: [email protected]
License: UNKNOWN
Description: UNKNOWN
Keywords: testing,logging,reporting,stats
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
8 changes: 8 additions & 0 deletions test_out.egg-info/SOURCES.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
setup.cfg
setup.py
test_out/__init__.py
test_out/test_out.py
test_out.egg-info/PKG-INFO
test_out.egg-info/SOURCES.txt
test_out.egg-info/dependency_links.txt
test_out.egg-info/top_level.txt
1 change: 1 addition & 0 deletions test_out.egg-info/dependency_links.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 1 addition & 0 deletions test_out.egg-info/top_level.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
test_out
4 changes: 1 addition & 3 deletions test_out/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
from test_out import TestOut

0 comments on commit d678b8f

Please sign in to comment.