Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
3stack-rfc6266 / setup.py
Size: Mime:
from setuptools import setup

setup(
    author="Gabriel de Perthuis",
    author_email="g2p.code+rfc6266@gmail.com",
    description="Parse and generate Content-Disposition headers",
    url="https://github.com/g2p/rfc6266",
    keywords="rfc6266 Content-Disposition http attachments",
    name="3stack-rfc6266",
    version="0.0.6",  # semver
    license="GNU LGPL",
    platforms="OS-independent",
    py_modules=["rfc6266", "test_rfc6266"],
    python_requires=">=3.8",
    long_description=open("README").read(),
    classifiers=(
        "Programming Language :: Python :: 3",
        "Programming Language :: Python :: Implementation :: CPython",
        "Programming Language :: Python :: Implementation :: PyPy",
        "Intended Audience :: Developers",
        "License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
        "Topic :: Internet :: WWW/HTTP",
    ),
)