# HG changeset patch # User Jeff Hammel # Date 1717368628 25200 # Node ID f7396d92446daa291a384ca289bf540c1508792d # Parent 2ba55733b7880668fd014e99bc26fec848244060 bump version diff -r 2ba55733b788 -r f7396d92446d setup.py --- a/setup.py Sun Jun 02 15:47:40 2024 -0700 +++ b/setup.py Sun Jun 02 15:50:28 2024 -0700 @@ -1,11 +1,17 @@ from setuptools import setup -try: - description = open('README.txt').read() -except IOError: - description = '' +description = "a place to list links + tools", -version = "0.4.1" +# :( `twine check` does not like the README +# because restructured text changed their tbale format +# https://sublime-and-sphinx-guide.readthedocs.io/en/latest/tables.html +#try: +# description = open('README.txt').read() +#except IOError: +# description = '' +long_description = description + +version = "0.4.2" # dependencies dependencies = [ @@ -23,8 +29,8 @@ setup(name='toolk0s', version=version, - description="a place to list links + tools", - long_description=description, + description=description, + long_description=long_description, classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers author='Jeff Hammel', author_email='k0scist@gmail.com',