예제 #1
0
      'based on uvloop and picohttpparser',
      package_dir={'': 'src'},
      packages=find_packages('src'),
      keywords=['web', 'asyncio'],
      platforms='x86_64 Linux and MacOS X',
      install_requires=[
          'uvloop>=0.11.3',
      ],
      entry_points="""
         [console_scripts]
         japronto = japronto.__main__:main
    """,
      classifiers=[
          'Development Status :: 2 - Pre-Alpha',
          'Intended Audience :: Developers', 'Environment :: Web Environment',
          'License :: OSI Approved :: MIT License',
          'Operating System :: MacOS :: MacOS X',
          'Operating System :: POSIX :: Linux', 'Programming Language :: C',
          'Programming Language :: Python :: 3.5',
          'Programming Language :: Python :: 3.6',
          'Programming Language :: Python :: 3.7',
          'Programming Language :: Python :: 3.8',
          'Programming Language :: Python :: Implementation :: CPython',
          'Topic :: Internet :: WWW/HTTP'
      ],
      zip_safe=False,
      include_package_data=True,
      package_data={'picohttpparser': ['*.so']},
      ext_modules=build.get_platform(),
      cmdclass={'build_ext': build.custom_build_ext})
예제 #2
0
    package_dir={'': 'src'},
    packages=find_packages('src'),
    keywords=['web', 'asyncio'],
    platforms='x86_64 Linux and MacOS X',
    install_requires=[
        'uvloop>=0.7.2',
    ],
    entry_points="""
         [console_scripts]
         japronto = japronto.__main__:main
    """,
    classifiers=[
        'Development Status :: 2 - Pre-Alpha',
        'Intended Audience :: Developers',
        'Environment :: Web Environment',
        'License :: OSI Approved :: MIT License',
        'Operating System :: MacOS :: MacOS X',
        'Operating System :: POSIX :: Linux',
        'Programming Language :: C',
        'Programming Language :: Python :: 3.5',
        'Programming Language :: Python :: 3.6',
        'Programming Language :: Python :: Implementation :: CPython',
        'Topic :: Internet :: WWW/HTTP'
    ],
    zip_safe=False,
    include_package_data=True,
    package_data={'picohttpparser': ['*.so']},
    ext_modules=build.get_platform(),
    cmdclass={'build_ext': build.custom_build_ext}
)