Mercurial > urwid-satext
annotate setup.py @ 138:f1624c1fb0e6
install: removed deprecated ez_setup.py
author | Goffi <goffi@goffi.org> |
---|---|
date | Wed, 24 Jul 2019 20:20:05 +0200 |
parents | 78126ba2a04c |
children | 810f92c7de88 |
rev | line source |
---|---|
31 | 1 #!/usr/bin/env python |
2 # -*- coding: utf-8 -*- | |
3 | |
39
8cc5970039f3
distribute is now used with distutils, added urwid requirement
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
4 from setuptools import setup |
35 | 5 from glob import glob |
31 | 6 |
130 | 7 name = "urwid_satext" |
34
875ff127b2dd
- i18n management: gettext integration + french translation
Goffi <goffi@goffi.org>
parents:
31
diff
changeset
|
8 |
130 | 9 setup( |
10 name=name, | |
136 | 11 version="0.7.0a3", |
130 | 12 description=u"SàT extension widgets for Urwid", |
13 long_description=(u"Urwid SàT extension widgets is a set of widgets for the console " | |
14 u"user interface library Urwid (http://excess.org/urwid/). This " | |
15 u"library, originaly made for the SàT project, was eventually " | |
16 u"separated so other softwares can use it. Widgets provided " | |
17 u"include password text box, tab container, dialogs, file chooser " | |
18 u"etc. Feel free to go to the project page for more informations."), | |
19 author="Goffi (Jérôme Poisson)", | |
20 author_email="goffi@goffi.org", | |
21 url="http://wiki.goffi.org/wiki/Urwid-satext", | |
22 classifiers=[ | |
23 "Environment :: Console", | |
24 "License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)", | |
25 "Intended Audience :: Developers", | |
26 ], | |
27 packages=["urwid_satext"], | |
28 data_files=[ | |
29 ( | |
131
331546daef20
install (setup.py): don't force sys.prefix for locales
Goffi <goffi@goffi.org>
parents:
130
diff
changeset
|
30 "share/locale/fr/LC_MESSAGES", |
130 | 31 ["i18n/fr/LC_MESSAGES/urwid_satext.mo"], |
32 ), | |
33 ("share/doc/%s/examples" % name, glob("examples/*.py")), | |
34 ("share/doc/%s" % name, ["COPYING", "COPYING.LESSER", "README", "CHANGELOG"]), | |
35 ], | |
36 install_requires=["urwid >= 1.2.0"], | |
37 ) |