gusmobile

python gemini client library
git clone https://git.clttr.info/gusmobile.git
Log (Feed) | Files | Refs (Tags) | README | LICENSE

setup.py (706B)


      1 import os
      2 from setuptools import setup
      3 
      4 
      5 setup(
      6     name="gusmobile",
      7     version="0.4.0",
      8     author="Jason McBrayer & René Wagner",
      9     author_email="rwa@clttr.info",
     10     description=(
     11         "A simple library for requesting resources using the " "gemini protocol"
     12     ),
     13     license="AGPL3",
     14     keywords="gemini client internet",
     15     url="https://git.sr.ht/~rwa/gusmobile/",
     16     packages=["gusmobile", "tests"],
     17     long_description="gemini client lib",
     18     classifiers=[
     19         "Development Status :: 2 - Beta",
     20         "Intended Audience :: Developers",
     21         "License :: OSI Approved :: GNU Affero General Public License v3 "
     22         "or later (AGPLv3+)",
     23         "Topic :: Internet",
     24     ],
     25 )