setup.py

来自「A pure python module which implements th」· Python 代码 · 共 15 行

PY
15
字号
#!/usr/bin/env pythonfrom distutils.core import setupsetup(name="pyDes",      version="2.0.0",      description="Pure python implementation of DES and TRIPLE DES encryption algorithm",      author="Todd Whiteman",      author_email="twhitema@gmail.com",      url="http://twhiteman.netfirms.com/des.html",      platforms=["All"],      keywords=["DES", "TRIPLE-DES", "ENCRYPTION", "ALGORITHM", "SECURITY"],      py_modules=["pyDes"]      )

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?