comparison setup.py @ 130:406c310e52b5 0.7.0a1

0.7.0a1 release
author Goffi <goffi@goffi.org>
date Wed, 04 Jul 2018 07:45:36 +0200
parents 33cb9a05ff84
children 331546daef20
comparison
equal deleted inserted replaced
129:2a1880d5d450 130:406c310e52b5
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # -*- coding: utf-8 -*- 2 # -*- coding: utf-8 -*-
3 3
4 from ez_setup import use_setuptools 4 from ez_setup import use_setuptools
5
5 use_setuptools() 6 use_setuptools()
6 7
7 from setuptools import setup 8 from setuptools import setup
8 import sys 9 import sys
9 from os import path 10 from os import path
10 from glob import glob 11 from glob import glob
11 12
12 name = 'urwid_satext' 13 name = "urwid_satext"
13 14
14 setup(name=name, 15 setup(
15 version='0.6.1', 16 name=name,
16 description=u'SàT extension widgets for Urwid', 17 version="0.7.0a1",
17 long_description=u'Urwid SàT extension widgets is a set of widgets for the console user interface library Urwid (http://excess.org/urwid/). This library, originaly made for the SàT project, was eventually separated so other softwares can use it. Widgets provided include password text box, tab container, dialogs, file chooser etc. Feel free to go to the project page for more informations.', 18 description=u"SàT extension widgets for Urwid",
18 author='Goffi (Jérôme Poisson)', 19 long_description=(u"Urwid SàT extension widgets is a set of widgets for the console "
19 author_email='goffi@goffi.org', 20 u"user interface library Urwid (http://excess.org/urwid/). This "
20 url='http://wiki.goffi.org/wiki/Urwid-satext', 21 u"library, originaly made for the SàT project, was eventually "
21 classifiers=['Environment :: Console', 22 u"separated so other softwares can use it. Widgets provided "
22 'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)', 23 u"include password text box, tab container, dialogs, file chooser "
23 'Intended Audience :: Developers'], 24 u"etc. Feel free to go to the project page for more informations."),
24 packages=['urwid_satext'], 25 author="Goffi (Jérôme Poisson)",
25 data_files=[(path.join(sys.prefix,'share/locale/fr/LC_MESSAGES'), ['i18n/fr/LC_MESSAGES/urwid_satext.mo']), 26 author_email="goffi@goffi.org",
26 ('share/doc/%s/examples' % name, glob("examples/*.py")), 27 url="http://wiki.goffi.org/wiki/Urwid-satext",
27 ('share/doc/%s' % name, ['COPYING','COPYING.LESSER','README', "CHANGELOG"])], 28 classifiers=[
28 install_requires=['urwid >= 1.2.0'] 29 "Environment :: Console",
29 ) 30 "License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
31 "Intended Audience :: Developers",
32 ],
33 packages=["urwid_satext"],
34 data_files=[
35 (
36 path.join(sys.prefix, "share/locale/fr/LC_MESSAGES"),
37 ["i18n/fr/LC_MESSAGES/urwid_satext.mo"],
38 ),
39 ("share/doc/%s/examples" % name, glob("examples/*.py")),
40 ("share/doc/%s" % name, ["COPYING", "COPYING.LESSER", "README", "CHANGELOG"]),
41 ],
42 install_requires=["urwid >= 1.2.0"],
43 )