Skip to content

Commit da672ac

Browse files
committed
Add missing trove classiers and tests for each
Thanks @kdeldycke for the poke.
1 parent 970e63b commit da672ac

3 files changed

Lines changed: 28 additions & 0 deletions

File tree

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
1+
.eggs
12
.coverage
3+
.tox
24
build
35
dist
46
temp
57
titlecase.egg-info
8+
*.swp
9+
*.swo
610
*.pyc
11+
*$py.class

setup.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,17 @@ def readme():
1616
classifiers=[
1717
"Development Status :: 4 - Beta",
1818
"Intended Audience :: Developers",
19+
"Operating Systems :: OS Independent",
1920
"Programming Language :: Python",
21+
"Programming Language :: Python :: 2",
22+
"Programming Language :: Python :: 2.6",
23+
"Programming Language :: Python :: 2.7",
24+
"Programming Language :: Python :: 3",
25+
"Programming Language :: Python :: 3.3",
26+
"Programming Language :: Python :: 3.4",
27+
"Programming Language :: Python :: 3.5",
28+
"Programming Language :: Python :: Implementation :: CPython"
29+
"Programming Language :: Python :: Implementation :: PyPy"
2030
"License :: OSI Approved :: MIT License",
2131
"Natural Language :: English",
2232
"Topic :: Text Processing :: Filters",

tox.ini

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Tox (http://tox.testrun.org/) is a tool for running tests
2+
# in multiple virtualenvs. This configuration file will run the
3+
# test suite on all supported python versions. To use it, "pip install tox"
4+
# and then run "tox" from this directory.
5+
6+
[tox]
7+
envlist = py26, py27, py33, py34, py35, pypy
8+
# Doesn't seem to work on jython currently; some unicode issue
9+
10+
[testenv]
11+
commands = nosetests
12+
deps =
13+
nose

0 commit comments

Comments
 (0)