tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

setup.cfg (1539B)


      1 [metadata]
      2 name = pytest-asyncio
      3 version = attr: pytest_asyncio.__version__
      4 url = https://github.com/pytest-dev/pytest-asyncio
      5 project_urls = 
      6 GitHub = https://github.com/pytest-dev/pytest-asyncio
      7 description = Pytest support for asyncio
      8 long_description = file: README.rst
      9 long_description_content_type = text/x-rst
     10 author = Tin Tvrtković <tinchester@gmail.com>
     11 author_email = tinchester@gmail.com
     12 license = Apache 2.0
     13 license_file = LICENSE
     14 classifiers = 
     15 Development Status :: 4 - Beta
     16 
     17 Intended Audience :: Developers
     18 
     19 License :: OSI Approved :: Apache Software License
     20 
     21 Programming Language :: Python :: 3.7
     22 Programming Language :: Python :: 3.8
     23 Programming Language :: Python :: 3.9
     24 Programming Language :: Python :: 3.10
     25 Programming Language :: Python :: 3.11
     26 
     27 Topic :: Software Development :: Testing
     28 
     29 Framework :: AsyncIO
     30 Framework :: Pytest
     31 Typing :: Typed
     32 
     33 [options]
     34 python_requires = >=3.7
     35 packages = find:
     36 include_package_data = True
     37 install_requires = 
     38 pytest >= 6.1.0
     39 typing-extensions >= 3.7.2; python_version < "3.8"
     40 
     41 [options.extras_require]
     42 testing = 
     43 coverage >= 6.2
     44 hypothesis >= 5.7.1
     45 flaky >= 3.5.0
     46 mypy >= 0.931
     47 pytest-trio >= 0.7.0
     48 
     49 [options.entry_points]
     50 pytest11 = 
     51 asyncio = pytest_asyncio.plugin
     52 
     53 [coverage:run]
     54 source = pytest_asyncio
     55 branch = true
     56 
     57 [coverage:report]
     58 show_missing = true
     59 
     60 [tool:pytest]
     61 addopts = -rsx --tb=short
     62 testpaths = tests
     63 asyncio_mode = auto
     64 junit_family = xunit2
     65 filterwarnings = error
     66 
     67 [flake8]
     68 max-line-length = 88
     69 
     70 [egg_info]
     71 tag_build = 
     72 tag_date = 0