From b021a8857699f24cb84b5a67ac74f6faa5f6792a Mon Sep 17 00:00:00 2001 From: Brian Wylie Date: Tue, 30 Dec 2014 14:41:56 -0700 Subject: [PATCH] cleaning up setup.cfg; adding classifiers to setup.py --- setup.cfg | 11 ----------- setup.py | 5 ++++- 2 files changed, 4 insertions(+), 12 deletions(-) diff --git a/setup.cfg b/setup.cfg index 5018e4d..b428cdb 100644 --- a/setup.cfg +++ b/setup.cfg @@ -13,14 +13,3 @@ python_files=*.py python_functions=test norecursedirs=.tox .git *.egg-info __pycache__ dist build -python_versions = - 2.6 - 2.7 - pypy - -dependencies = - -coverage_flags = - -environment_variables = - diff --git a/setup.py b/setup.py index 32162a8..808deff 100755 --- a/setup.py +++ b/setup.py @@ -28,6 +28,9 @@ setup(name=package_name, 'Intended Audience :: Developers', 'License :: OSI Approved :: BSD License', 'Natural Language :: English', - 'Programming Language :: Python :: 2.7' + 'Programming Language :: Python :: 2.6', + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: Implementation :: CPython', + 'Programming Language :: Python :: Implementation :: PyPy', ] )