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", ], )