Mercurial > hg > toolbox
comparison setup.py @ 21:f7396d92446d
bump version
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Sun, 02 Jun 2024 15:50:28 -0700 |
parents | c6800e0b01ed |
children | 17e3a9b6b4e2 |
comparison
equal
deleted
inserted
replaced
20:2ba55733b788 | 21:f7396d92446d |
---|---|
1 from setuptools import setup | 1 from setuptools import setup |
2 | 2 |
3 try: | 3 description = "a place to list links + tools", |
4 description = open('README.txt').read() | |
5 except IOError: | |
6 description = '' | |
7 | 4 |
8 version = "0.4.1" | 5 # :( `twine check` does not like the README |
6 # because restructured text changed their tbale format | |
7 # https://sublime-and-sphinx-guide.readthedocs.io/en/latest/tables.html | |
8 #try: | |
9 # description = open('README.txt').read() | |
10 #except IOError: | |
11 # description = '' | |
12 long_description = description | |
13 | |
14 version = "0.4.2" | |
9 | 15 |
10 # dependencies | 16 # dependencies |
11 dependencies = [ | 17 dependencies = [ |
12 'WebOb', | 18 'WebOb', |
13 'tempita', | 19 'tempita', |
21 'pyes', | 27 'pyes', |
22 ] | 28 ] |
23 | 29 |
24 setup(name='toolk0s', | 30 setup(name='toolk0s', |
25 version=version, | 31 version=version, |
26 description="a place to list links + tools", | 32 description=description, |
27 long_description=description, | 33 long_description=long_description, |
28 classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers | 34 classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers |
29 author='Jeff Hammel', | 35 author='Jeff Hammel', |
30 author_email='k0scist@gmail.com', | 36 author_email='k0scist@gmail.com', |
31 url='http://k0s.org/hg/toolbox/', | 37 url='http://k0s.org/hg/toolbox/', |
32 license="MPL", | 38 license="MPL", |