Mercurial > urwid-satext
comparison setup.py @ 145:d505d9ee792e v0.8.0b1
v0.8.0b1 release
author | Goffi <goffi@goffi.org> |
---|---|
date | Fri, 18 Jun 2021 13:19:44 +0200 |
parents | 144bdf877d21 |
children | 3ff24fbf03c1 |
comparison
equal
deleted
inserted
replaced
144:bfab04d0a745 | 145:d505d9ee792e |
---|---|
1 #!/usr/bin/env python | 1 #!/usr/bin/env python3 |
2 # -*- coding: utf-8 -*- | |
3 | 2 |
4 from setuptools import setup | 3 from setuptools import setup |
5 from glob import glob | 4 from glob import glob |
6 | 5 |
7 name = "urwid_satext" | 6 name = "urwid_satext" |
8 | 7 |
9 setup( | 8 setup( |
10 name=name, | 9 name=name, |
11 version="0.8.0.dev0", | 10 version="0.8.0b1", |
12 description="SàT extension widgets for Urwid", | 11 description="SàT extension widgets for Urwid", |
13 long_description=("Urwid SàT extension widgets is a set of widgets for the console " | 12 long_description=( |
14 "user interface library Urwid (http://excess.org/urwid/). This " | 13 "Urwid SàT extension widgets is a set of widgets for the console " |
15 "library, originaly made for the SàT project, was eventually " | 14 "user interface library Urwid (http://excess.org/urwid/). This " |
16 "separated so other softwares can use it. Widgets provided " | 15 'library, originaly made for the Libervia (formerly "SàT") project, was ' |
17 "include password text box, tab container, dialogs, file chooser " | 16 "eventually separated so other softwares can use it. Widgets provided " |
18 "etc. Feel free to go to the project page for more informations."), | 17 "include password text box, tab container, dialogs, file chooser " |
18 "etc. Feel free to go to the project page for more informations."), | |
19 author="Goffi (Jérôme Poisson)", | 19 author="Goffi (Jérôme Poisson)", |
20 author_email="goffi@goffi.org", | 20 author_email="goffi@goffi.org", |
21 url="http://wiki.goffi.org/wiki/Urwid-satext", | 21 url="https://wiki.goffi.org/w/index.php/Urwid-satext", |
22 classifiers=[ | 22 classifiers=[ |
23 "Programming Language :: Python :: 3 :: Only", | |
24 "Programming Language :: Python :: 3.7", | |
25 "Programming Language :: Python :: 3.8", | |
26 "Programming Language :: Python :: 3.9", | |
23 "Environment :: Console", | 27 "Environment :: Console", |
24 "License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)", | 28 "License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)", |
25 "Intended Audience :: Developers", | 29 "Intended Audience :: Developers", |
26 ], | 30 ], |
27 packages=["urwid_satext"], | 31 packages=["urwid_satext"], |