summaryrefslogtreecommitdiff
path: root/setup.cfg
blob: 0a232c5cfe4ab5c3b708136a6a9eb3926b0ff8ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[metadata]
name = python-mimeparse
version = attr: mimeparse.__version__
description = A module provides basic functions for parsing mime-type names and matching them against a list of media-ranges.
long_description = file: README.rst
long_description_content_type = text/x-rst
url = https://github.com/falconry/python-mimeparse
author = DB Tsai
author_email = dbtsai@dbtsai.com
maintainer = Falcon team
maintainer_email = mail@kgriffs.com
license = MIT
license_file = LICENSE
classifiers =
    Programming Language :: Python
    Programming Language :: Python :: 3
    Programming Language :: Python :: 3.6
    Programming Language :: Python :: 3.7
    Programming Language :: Python :: 3.8
    Programming Language :: Python :: 3.9
    Programming Language :: Python :: 3.10
    Programming Language :: Python :: Implementation :: CPython
    Programming Language :: Python :: Implementation :: PyPy
    License :: OSI Approved :: MIT License
    Operating System :: OS Independent
    Development Status :: 5 - Production/Stable
    Intended Audience :: Developers
    Topic :: Internet :: WWW/HTTP
    Topic :: Software Development :: Libraries :: Python Modules
keywords =
    mime-type
project_urls =
    Issue Tracker=https://github.com/falconry/python-mimeparse

[options]
python_requires = >=3.5
py_modules = mimeparse
install_requires =
tests_require =
    pytest