💾 Archived View for gmn.clttr.info › sources › gusmobile.git › tree › setup.py.txt captured on 2023-01-29 at 05:03:43.

View Raw

More Information

➡️ Next capture (2023-09-08)

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

import os
from setuptools import setup


setup(
    name="gusmobile",
    version="0.1.0",
    author="Jason McBrayer",
    author_email="jmcbray@carcosa.net",
    description=(
        "A simple library for requesting resources using the " "gemini protocol"
    ),
    license="AGPL3",
    keywords="gemini client internet",
    url="https://git.carcosa.net/jmcbray/gusmobile/",
    packages=["gusmobile", "tests"],
    long_description="gemini client lib",
    classifiers=[
        "Development Status :: 3 - Alpha",
        "Intended Audience :: Developers",
        "License :: OSI Approved :: GNU Affero General Public License v3 "
        "or later (AGPLv3+)",
        "Topic :: Internet",
    ],
)