drops 'import about' requirement

This commit is contained in:
Moisés Guimarães
2016-05-09 15:18:35 -03:00
parent b0c23ceafa
commit 412141198e
2 changed files with 23 additions and 20 deletions

View File

@@ -19,16 +19,25 @@
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
metadata = dict(
__name__ = "wolfcrypt",
__version__ = "0.1.5",
__license__ = """GPLv2 or Commercial License""",
__author__ = "wolfSSL Inc. <info@wolfssl.com>",
__url__ = "https://wolfssl.github.io/wolfcrypt-py",
__summary__ = "A Python library that encapsulates wolfSSL's wolfCrypt API.",
__keywords__ = """
OS independent, Python / 2.7, Python / 3.5, software development,
security, cryptography, Proprietary, GPLv2
""",
__name__ = "wolfcrypt",
__version__ = "0.1.6",
__license__ = "GPLv2 or Commercial License",
__author__ = "wolfSSL Inc.",
__author_email__ = "info@wolfssl.com",
__url__ = "https://wolfssl.github.io/wolfcrypt-py",
__description__ = \
u"A Python library that encapsulates wolfSSL's wolfCrypt API.",
__keywords__ = "security, cryptography",
__classifiers__ = [
u"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
u"License :: Other/Proprietary License",
u"Operating System :: OS Independent",
u"Programming Language :: Python :: 2.7",
u"Programming Language :: Python :: 3.5",
u"Topic :: Security",
u"Topic :: Security :: Cryptography",
u"Topic :: Software Development"
]
)
globals().update(metadata)