cleaning up setup.cfg; adding classifiers to setup.py

This commit is contained in:
Brian Wylie 2014-12-30 14:41:56 -07:00
parent 7f1f57ff34
commit b021a88576
2 changed files with 4 additions and 12 deletions

View File

@ -13,14 +13,3 @@ python_files=*.py
python_functions=test python_functions=test
norecursedirs=.tox .git *.egg-info __pycache__ dist build norecursedirs=.tox .git *.egg-info __pycache__ dist build
python_versions =
2.6
2.7
pypy
dependencies =
coverage_flags =
environment_variables =

View File

@ -28,6 +28,9 @@ setup(name=package_name,
'Intended Audience :: Developers', 'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License', 'License :: OSI Approved :: BSD License',
'Natural Language :: English', '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',
] ]
) )