8000 Add license clause in qualifiers, include newer Python versions · sparkur/python-sasl3@b1ec160 · GitHub
[go: up one dir, main page]

Skip to content

Commit b1ec160

Browse files
authored
Add license clause in qualifiers, include newer Python versions
1 parent ded9fe3 commit b1ec160

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

setup.py

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# Copyright 2015 Cloudera Inc.
21
#
32
# Licensed under the Apache License, Version 2.0 (the "License");
43
# you may not use this file except in compliance with the License.
@@ -27,8 +26,19 @@
2726
description="""Cyrus-SASL bindings for Python""",
2827
classifiers=[
2928
'Programming Language :: Python :: 3',
29+
'Development Status :: 5 - Production/Stable',
30+
'Intended Audience :: Developers',
31+
'Intended Audience :: System Administrators',
32+
'License :: OSI Approved :: Apache Software License',
33+
'Programming Language :: Python :: 3',
34+
'Programming Language :: Python :: 3.4',
35+
'Programming Language :: Python :: 3.5',
36+
'Programming Language :: Python :: 3.6',
37+
'Programming Language :: Python :: 3.7',
38+
'Programming Language :: Python :: 3.8',
3039
],
3140
packages=['sasl'],
3241
install_requires=['six'],
3342
ext_modules=[sasl_module],
34-
include_package_data=True)
43+
include_package_data=True
44+
)

0 commit comments

Comments
 (0)
0