💾 Archived View for gmn.clttr.info › sources › gusmobile.git › tree › setup.py.txt captured on 2024-02-05 at 10:01:45.

View Raw

More Information

⬅️ Previous capture (2023-09-08)

-=-=-=-=-=-=-

import os
from setuptools import setup


setup(
    name="gusmobile",
    version="0.4.0",
    author="Jason McBrayer & René Wagner",
    author_email="rwa@clttr.info",
    description=(
        "A simple library for requesting resources using the " "gemini protocol"
    ),
    license="AGPL3",
    keywords="gemini client internet",
    url="https://git.sr.ht/~rwa/gusmobile/",
    packages=["gusmobile", "tests"],
    long_description="gemini client lib",
    classifiers=[
        "Development Status :: 2 - Beta",
        "Intended Audience :: Developers",
        "License :: OSI Approved :: GNU Affero General Public License v3 "
        "or later (AGPLv3+)",
        "Topic :: Internet",
    ],
)