tor-browser

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

setup.cfg (1427B)


      1 [metadata]
      2 name = importlib_metadata
      3 author = Jason R. Coombs
      4 author_email = jaraco@jaraco.com
      5 url = http://importlib-metadata.readthedocs.io/
      6 description = Read metadata from Python packages
      7 long_description = file: README.rst
      8 license = Apache Software License
      9 classifiers =
     10    Development Status :: 3 - Alpha
     11    Intended Audience :: Developers
     12    License :: OSI Approved :: Apache Software License
     13    Topic :: Software Development :: Libraries
     14    Programming Language :: Python :: 3
     15    Programming Language :: Python :: 2
     16 
     17 [options]
     18 python_requires = >=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*
     19 setup_requires = setuptools-scm
     20 install_requires =
     21    zipp>=0.5
     22    pathlib2; python_version < '3'
     23    contextlib2; python_version < '3'
     24    configparser>=3.5; python_version < '3'
     25 packages = importlib_metadata
     26 
     27 [mypy]
     28 ignore_missing_imports = True
     29 # XXX We really should use the default `True` value here, but it causes too
     30 # many warnings, so for now just disable it.  E.g. a package's __spec__ is
     31 # defined as Optional[ModuleSpec] so we can't just blindly pull attributes off
     32 # of that attribute.  The real fix is to add conditionals or asserts proving
     33 # that package.__spec__ is not None.
     34 strict_optional = False
     35 
     36 [wheel]
     37 universal=1
     38 
     39 [options.extras_require]
     40 testing =
     41    importlib_resources>=1.3; python_version < "3.9"
     42    packaging
     43    pep517
     44    unittest2; python_version < "3"
     45 docs =
     46    sphinx
     47    rst.linker