From bebdeb4c6554ebb25778015aa4bcc4929f65f4c8 Mon Sep 17 00:00:00 2001 From: Rory Conlin Date: Mon, 14 Jan 2019 13:19:54 -0500 Subject: [PATCH] updated readme and setup --- .gitignore | 2 ++ README.rst | 9 ++++++++- setup.py | 16 +++++++++------- 3 files changed, 19 insertions(+), 8 deletions(-) diff --git a/.gitignore b/.gitignore index 9599ab5..f4a4ffd 100644 --- a/.gitignore +++ b/.gitignore @@ -13,3 +13,5 @@ docs/_static .cache/ *.egg-info *.gif +build/ +dist/ \ No newline at end of file diff --git a/README.rst b/README.rst index bef0e17..4b50010 100644 --- a/README.rst +++ b/README.rst @@ -2,6 +2,8 @@ GASTOp ###### +|PyPI-Version| |Python-Version| + |Build-Status| |Coveralls| |Codacy| |Doc-Status| |License| @@ -67,4 +69,9 @@ The project is licensed under the GNU GPLv3 license. .. |License| image:: https://img.shields.io/badge/License-GPLv3-blue.svg :target: https://github.com/f0uriest/GASTOp/blob/master/LICENSE :alt: License: GPL v3 - +.. |Python-Version| image:: https://img.shields.io/pypi/pyversions/gastop.svg + :target: https://pypi.org/project/gastop + :alt: Python versions supported +.. |PyPI-Version| image:: https://img.shields.io/pypi/v/gastop.svg + :target: https://pypi.org/project/gastop/ + :alt: Current Release diff --git a/setup.py b/setup.py index d3316b0..a3f09bc 100644 --- a/setup.py +++ b/setup.py @@ -42,7 +42,7 @@ # For a discussion on single-sourcing the version across setup.py and the # project code, see # https://packaging.python.org/en/latest/single_source_version.html - version='0.2.9', # Required + version='1.1.0', # Required # This is a one-line description or tagline of what your project does. This # corresponds to the "Summary" metadata field: @@ -69,7 +69,7 @@ # # This field corresponds to the "Description-Content-Type" metadata field: # https://packaging.python.org/specifications/core-metadata/#description-content-type-optional - long_description_content_type='text/x-rest', # Optional (see note above) + long_description_content_type='text/x-rst', # Optional (see note above) # This should be a valid link to your project's main homepage. # @@ -83,7 +83,7 @@ # This should be a valid email address corresponding to the author listed # above. - # author_email= + author_email='wconlin@princeton.edu', # Classifiers help users find your project by categorizing it. # @@ -100,16 +100,18 @@ 'Intended Audience :: End Users/Desktop', 'Intended Audience :: Manufacturing', 'Intended Audience :: Science/Research', - 'Topic :: Education :: Computer Aided Instruction (CAI)' - 'Topic :: Scientific/Engineering :: Artificial Intelligence' - 'Topic :: Scientific/Engineering' + 'Topic :: Education :: Computer Aided Instruction (CAI)', + 'Topic :: Scientific/Engineering :: Artificial Intelligence', + 'Topic :: Scientific/Engineering', # Pick your license as you wish 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)', - 'Natural Language :: English' + 'Natural Language :: English', # Specify the Python versions you support here. In particular, ensure # that you indicate whether you support Python 2, Python 3 or both. + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', ],