diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2018-11-13 12:28:20 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2018-11-13 12:28:20 -0800 |
commit | 2888327e9edca05d50bc6d71bf68166ee0fabcfe (patch) | |
tree | 9d7da3c09a4fa52af197fc6786e8f37659e45d90 /python/setup.py | |
parent | 7d17e7cac4fee2661fec6474a8aade3b38ef5448 (diff) | |
download | fatcat-2888327e9edca05d50bc6d71bf68166ee0fabcfe.tar.gz fatcat-2888327e9edca05d50bc6d71bf68166ee0fabcfe.zip |
more python client library tomfoolery
Diffstat (limited to 'python/setup.py')
-rw-r--r-- | python/setup.py | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/python/setup.py b/python/setup.py index 1e0ee7fb..00425b4a 100644 --- a/python/setup.py +++ b/python/setup.py @@ -47,7 +47,7 @@ here = os.path.abspath(os.path.dirname(__file__)) # Import the README and use it as the long-description. # Note: this will only work if 'README.md' is present in your MANIFEST.in file! try: - with io.open(os.path.join(here, 'README.md'), encoding='utf-8') as f: + with io.open(os.path.join(here, 'fatcat_client/README.md'), encoding='utf-8') as f: long_description = '\n' + f.read() except FileNotFoundError: long_description = DESCRIPTION @@ -104,7 +104,7 @@ setup( version=about['__version__'], description=DESCRIPTION, long_description=long_description, - #long_description_content_type='text/markdown', + long_description_content_type='text/markdown', keywords=["Swagger", "fatcat"], author=AUTHOR, author_email=EMAIL, @@ -124,9 +124,11 @@ setup( # Trove classifiers # Full list: https://pypi.python.org/pypi?%3Aaction=list_classifiers #'License :: OSI Approved :: MIT License', + 'Development Status :: 3 - Alpha', + 'Intended Audience :: Developers', 'Programming Language :: Python', - #'Programming Language :: Python :: 3', - #'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.5', #'Programming Language :: Python :: Implementation :: CPython', #'Programming Language :: Python :: Implementation :: PyPy' ], |