This commit is contained in:
2017-01-23 21:41:11 -05:00
parent 50d72d0427
commit a0aa467f55
2 changed files with 30 additions and 3 deletions
+13 -3
View File
@@ -30,7 +30,7 @@ required = [
setup(
name='crayons',
version='0.1.1',
version='0.1.2',
description='TextUI colors for Python.',
long_description=long_description,
author='Kenneth Reitz',
@@ -39,7 +39,17 @@ setup(
py_modules=['crayons'],
install_requires=required,
license='MIT',
classifiers=(
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy'
),
],
)