Skip to content

Commit

Permalink
Add Trove classifiers indicating CPython and PyPy support. Also added
Browse files Browse the repository at this point in the history
.gitignore.
  • Loading branch information
strichter committed Mar 8, 2013
1 parent 81dbedb commit 1341066
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 6 deletions.
12 changes: 12 additions & 0 deletions .gitignore
@@ -0,0 +1,12 @@
*.pyc
*.so
*.dll
__pycache__
src/*.egg-info

.installed.cfg
.tox
bin
build
develop-eggs
parts
2 changes: 1 addition & 1 deletion CHANGES.txt
Expand Up @@ -5,7 +5,7 @@ CHANGES
4.0.2 (unreleased)
------------------

- Nothing changed yet.
- Add Trove classifiers indicating CPython and PyPy support.


4.0.1 (2013-02-11)
Expand Down
12 changes: 7 additions & 5 deletions setup.py
Expand Up @@ -36,11 +36,13 @@ def read(*rnames):
'Intended Audience :: Developers',
'License :: OSI Approved :: Zope Public License',
'Programming Language :: Python',
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Operating System :: OS Independent',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development',
Expand Down

0 comments on commit 1341066

Please sign in to comment.