Skip to content

Commit c4d3e42

Browse files
committed
cleaning up comments, fixes #23
1 parent 021b63f commit c4d3e42

File tree

3 files changed

+2
-12
lines changed

3 files changed

+2
-12
lines changed

setup.py

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -74,12 +74,5 @@ def find_version(*file_paths):
7474
'pytz',
7575
],
7676

77-
# TODO: these aren't in the sample package, but might again become imp
78-
# if JSON schema files are needed
79-
# zip_safe = False,
80-
# include_package_data = True,
81-
82-
# NOTE: this isn't included in the sample packaging recommendation, but it seems to be the
83-
# de-facto standard for testing tools, Travis uses nose
84-
test_suite='nose.collector',
77+
include_package_data = True,
8578
)

test_requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
nose
22
httpretty
33
sure
4+
wheel

tox.ini

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
[tox]
22
envlist = py26,py27,py34
33
[testenv]
4-
; the current requirements.txt does an develop install, the actual dependencies
5-
; are in the setup.py. so this probably isn't necessary if we are replying on
6-
; tox doing an sdist installation. it should stick around for travis though.
7-
; deps = -rrequirements.txt
84
deps = -rtest_requirements.txt
95
commands =
106
nosetests []

0 commit comments

Comments
 (0)