Skip to content

Commit

Permalink
Add trove classifiers.
Browse files Browse the repository at this point in the history
caniusepython3 project uses trove classifiers to determine if a package
can be used in Python 3. This commits adds some classifier data to
allow caniusepython3 to detect that this package supports Python 3.
  • Loading branch information
gandalf013 authored and edenhill committed Nov 24, 2020
1 parent c33a0cc commit c32cd12
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,16 @@ def get_install_requirements(path):
]


trove_classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
]

setup(name='confluent-kafka',
# Make sure to bump CFL_VERSION* in confluent_kafka/src/confluent_kafka.h
# and version and release in docs/conf.py.
Expand All @@ -74,6 +84,7 @@ def get_install_requirements(path):
package_dir={'': 'src'},
data_files=[('', [os.path.join(work_dir, 'LICENSE.txt')])],
install_requires=INSTALL_REQUIRES,
classifiers=trove_classifiers,
extras_require={
'schema-registry': SCHEMA_REGISTRY_REQUIRES,
'avro': AVRO_REQUIRES,
Expand Down

0 comments on commit c32cd12

Please sign in to comment.