コード例 #1
0
ファイル: setup-template.py プロジェクト: ws-os/spring-python
setup(name='springpython',
      version='${version}',
      description='Spring Python',
      long_description='Spring Python is an offshoot of the Java-based SpringFramework, targeted for Python. Spring provides many useful features, and I wanted those same features available when working with Python.',
      author='Greg L. Turnquist',
      author_email='greg.turnquist at springsource dot com',
      url='http://springpython.webfactional.com',
      platforms = ["Python >= 2.6"],
      license='Apache Software License (http://www.apache.org/licenses/LICENSE-2.0)',
      scripts=['plugins/coily'],
      packages=['springpython',
                'springpython.aop',
                'springpython.jms',
                'springpython.config',
                'springpython.container',
                'springpython.context',
                'springpython.database',
                'springpython.factory',
                'springpython.remoting',
                'springpython.remoting.hessian',
                'springpython.remoting.pyro',
                'springpython.security',
                'springpython.security.context',
                'springpython.security.providers',
                'springpython.security.userdetails'
                ],
      package_data={'springpython': ["README", "COPYRIGHT", "LICENSE.txt"]},
      classifiers=["License :: OSI Approved :: Apache Software License",
                   "Intended Audience :: Developers",
                   "Development Status :: 5 - Production/Stable",
                   "Topic :: Software Development :: Libraries :: Python Modules",
                   "Programming Language :: Python",
                   "Operating System :: OS Independent"
                   ]

     )
コード例 #2
0
setup(
    name="pymqi",
    version=version,
    description=
    "Python IBM MQI Extension for WebSphere MQ (formerly known as MQSeries).",
    long_description=
    "PyMQI is a Python library for working with WebSphere MQ (formerly known as MQSeries) implementing MQI and PCF protocols.",
    author="Dariusz Suchojad",
    author_email="dsuch at gefira.pl",
    url="https://pythonhosted.org/pymqi/",
    download_url="https://pypi.python.org/pypi/pymqi",
    platforms="OS Independent",
    py_modules=["pymqi", "CMQC", "CMQCFC", "CMQXC", "CMQZC"],
    license='Python Software Foundation License',
    keywords=
    ('pymqi WebSphere MQ WMQ MQSeries IBM middleware messaging queueing asynchronous SOA EAI ESB integration'
     ),
    classifiers=[
        'Development Status :: 5 - Production/Stable',
        'License :: OSI Approved :: Python Software Foundation License',
        'Intended Audience :: Developers',
        'Natural Language :: English',
        'Operating System :: OS Independent',
        'Programming Language :: C',
        'Programming Language :: Python',
        'Topic :: Software Development :: Libraries :: Python Modules',
        'Topic :: Software Development :: Object Brokering',
    ],
    ext_modules=[
        Extension("pymqe", ["pymqe.c"],
                  define_macros=[('PYQMI_SERVERBUILD', build_server)],
                  library_dirs=library_dirs,
                  include_dirs=include_dirs,
                  libraries=libraries)
    ])
コード例 #3
0
ファイル: setup.py プロジェクト: art4ride/pymqi

setup(name = "pymqi",
    version = version,
    description = "Python IBM MQI Extension for WebSphere MQ (formerly known as MQSeries).",
    long_description= "PyMQI is a Python library for working with WebSphere MQ (formerly known as MQSeries) implementing MQI and PCF protocols.",
    author="Dariusz Suchojad",
    author_email="dsuch at gefira.pl",
    url="https://pythonhosted.org/pymqi/",
    download_url="https://pypi.python.org/pypi/pymqi",
    platforms="OS Independent",
    py_modules = ["pymqi", "CMQC", "CMQCFC", "CMQXC", "CMQZC"],
    license='Python Software Foundation License',
    keywords=('pymqi WebSphere MQ WMQ MQSeries IBM middleware messaging queueing asynchronous SOA EAI ESB integration'),
    classifiers = [
        'Development Status :: 5 - Production/Stable',
        'License :: OSI Approved :: Python Software Foundation License',
        'Intended Audience :: Developers',
        'Natural Language :: English',
        'Operating System :: OS Independent',
        'Programming Language :: C',
        'Programming Language :: Python',
        'Topic :: Software Development :: Libraries :: Python Modules',
        'Topic :: Software Development :: Object Brokering',
        ],
    ext_modules = [Extension("pymqe",["pymqe.c"],
            define_macros=[('PYQMI_SERVERBUILD', build_server)],
        library_dirs = library_dirs,
        include_dirs = include_dirs,
        libraries = libraries)])