• 大小: 390KB
    文件类型: .gz
    金币: 2
    下载: 1 次
    发布日期: 2021-06-12
  • 语言: Python
  • 标签: python  模块  

资源简介

pmw 模块,入门接触python 模块的新手人员可下载测试运行,有助于自己深层次理解python 模块。

资源截图

代码片段和文件信息

#!/usr/bin/env python
# setup.py 
from distutils.core import setup 


setup(name=“Pmw“
      version=‘1.3.2‘
      description = ‘Python Mega Widgets‘
      author=“Telstra Corporation Limited Australia“
      author_email=““
      url=‘http://pmw.sourceforge.net/‘
      
      package_dir = { “Pmw“:“Pmw“}
      
      packages=[‘Pmw‘ ‘Pmw.Pmw_1_3‘
‘Pmw.Pmw_1_3.lib‘]

      package_data={‘Pmw‘: [‘Pmw_1_3/lib/Pmw.def‘
    ‘Pmw_1_3/doc/*‘
                    ‘Pmw_1_3/contrib/*‘
                    ‘Pmw_1_3/demos/*‘
                    ‘Pmw_1_3/tests/*‘
                            ‘Pmw_1_3/bin/*‘
   ]
                   }
      
      license=‘BSD‘
      long_description=‘‘‘Pmw is a toolkit for building high-level compound widgets or megawidgets 
constructed using other widgets as component parts. It promotes consistent look and feel within
 and between graphical applications is highly configurable to your needs and is easy to use.‘‘‘
      classifiers = [
          ‘Development Status :: Alpha‘
          ‘Environment :: Console‘
          ‘Intended Audience :: End Users/Desktop‘
          ‘Intended Audience :: Developers‘
          ‘Intended Audience :: System Administrators‘
          ‘License :: BSD‘
          ‘Operating System :: MacOS :: MacOS X‘
          ‘Operating System :: Microsoft :: Windows‘
          ‘Operating System :: POSIX‘
          ‘Programming Language :: Python‘
          ‘Topic :: GUI‘
          ]
     )

评论

共有 条评论