Skip to content

Commit

Permalink
setup.py: make classifiers a list
Browse files Browse the repository at this point in the history
Warning: 'classifiers' should be a list, got type 'tuple'
  • Loading branch information
piotr1212 committed Jan 31, 2019
1 parent bedb234 commit 8982e0a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def read(fname):
package_data={'carbon': ['*.xml']},
data_files=install_files,
install_requires=['Twisted', 'txAMQP', 'cachetools', 'urllib3'],
classifiers=(
classifiers=[
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: Apache Software License',
Expand All @@ -55,6 +55,6 @@ def read(fname):
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
),
],
zip_safe=False
)

0 comments on commit 8982e0a

Please sign in to comment.