mirror of https://github.com/MISP/PyIntel471
Corrected license classifer
LICENSE file states BSD-licensed code, but classifier contained values that would have people find the package in PyPi under AGPLv3+. (The two license types are incompatible. It's presumed that the author intended BSD license, but sending in a PR to verify.pull/2/head
parent
0df8d51f1c
commit
4507c939f0
2
setup.py
2
setup.py
|
@ -13,7 +13,7 @@ setup(
|
||||||
description='Python client for Intel471',
|
description='Python client for Intel471',
|
||||||
packages=['pyintel471'],
|
packages=['pyintel471'],
|
||||||
classifiers=[
|
classifiers=[
|
||||||
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
|
'License :: OSI Approved :: BSD License',
|
||||||
'Development Status :: 3 - Alpha',
|
'Development Status :: 3 - Alpha',
|
||||||
'Environment :: Console',
|
'Environment :: Console',
|
||||||
'Operating System :: POSIX :: Linux',
|
'Operating System :: POSIX :: Linux',
|
||||||
|
|
Loading…
Reference in New Issue