annotate setup.py @ 61:0c9e6a9cd03b 0.2.0

Version number update: - CHANGELOG updated - updated dates
author Goffi <goffi@goffi.org>
date Wed, 09 Jan 2013 00:19:59 +0100
parents ba5207e8607e
children e497bf7e3060
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
31
42cb54666fc2 Added basic setup.py
Goffi <goffi@goffi.org>
parents:
diff changeset
1 #!/usr/bin/env python
42cb54666fc2 Added basic setup.py
Goffi <goffi@goffi.org>
parents:
diff changeset
2 # -*- coding: utf-8 -*-
42cb54666fc2 Added basic setup.py
Goffi <goffi@goffi.org>
parents:
diff changeset
3
39
8cc5970039f3 distribute is now used with distutils, added urwid requirement
Goffi <goffi@goffi.org>
parents: 38
diff changeset
4 from distribute_setup import use_setuptools
8cc5970039f3 distribute is now used with distutils, added urwid requirement
Goffi <goffi@goffi.org>
parents: 38
diff changeset
5 use_setuptools()
8cc5970039f3 distribute is now used with distutils, added urwid requirement
Goffi <goffi@goffi.org>
parents: 38
diff changeset
6
8cc5970039f3 distribute is now used with distutils, added urwid requirement
Goffi <goffi@goffi.org>
parents: 38
diff changeset
7 from setuptools import setup
34
875ff127b2dd - i18n management: gettext integration + french translation
Goffi <goffi@goffi.org>
parents: 31
diff changeset
8 import sys
875ff127b2dd - i18n management: gettext integration + french translation
Goffi <goffi@goffi.org>
parents: 31
diff changeset
9 from os import path
35
5a8e2200ddc0 using glob for setup.py
Goffi <goffi@goffi.org>
parents: 34
diff changeset
10 from glob import glob
31
42cb54666fc2 Added basic setup.py
Goffi <goffi@goffi.org>
parents:
diff changeset
11
34
875ff127b2dd - i18n management: gettext integration + french translation
Goffi <goffi@goffi.org>
parents: 31
diff changeset
12 name = 'urwid_satext'
875ff127b2dd - i18n management: gettext integration + french translation
Goffi <goffi@goffi.org>
parents: 31
diff changeset
13
875ff127b2dd - i18n management: gettext integration + french translation
Goffi <goffi@goffi.org>
parents: 31
diff changeset
14 setup(name=name,
61
0c9e6a9cd03b Version number update:
Goffi <goffi@goffi.org>
parents: 54
diff changeset
15 version='0.2.0',
31
42cb54666fc2 Added basic setup.py
Goffi <goffi@goffi.org>
parents:
diff changeset
16 description=u'SàT extension widgets for Urwid',
38
67d312aee431 added long_description and classifiers in setup.py metadata
Goffi <goffi@goffi.org>
parents: 35
diff changeset
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.',
31
42cb54666fc2 Added basic setup.py
Goffi <goffi@goffi.org>
parents:
diff changeset
18 author='Goffi (Jérôme Poisson)',
42cb54666fc2 Added basic setup.py
Goffi <goffi@goffi.org>
parents:
diff changeset
19 author_email='goffi@goffi.org',
42cb54666fc2 Added basic setup.py
Goffi <goffi@goffi.org>
parents:
diff changeset
20 url='http://wiki.goffi.org/wiki/Urwid-satext',
38
67d312aee431 added long_description and classifiers in setup.py metadata
Goffi <goffi@goffi.org>
parents: 35
diff changeset
21 classifiers=['Environment :: Console',
67d312aee431 added long_description and classifiers in setup.py metadata
Goffi <goffi@goffi.org>
parents: 35
diff changeset
22 'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
67d312aee431 added long_description and classifiers in setup.py metadata
Goffi <goffi@goffi.org>
parents: 35
diff changeset
23 'Intended Audience :: Developers'],
31
42cb54666fc2 Added basic setup.py
Goffi <goffi@goffi.org>
parents:
diff changeset
24 packages=['urwid_satext'],
34
875ff127b2dd - i18n management: gettext integration + french translation
Goffi <goffi@goffi.org>
parents: 31
diff changeset
25 data_files=[(path.join(sys.prefix,'share/locale/fr/LC_MESSAGES'), ['i18n/fr/LC_MESSAGES/urwid_satext.mo']),
35
5a8e2200ddc0 using glob for setup.py
Goffi <goffi@goffi.org>
parents: 34
diff changeset
26 ('share/doc/%s/examples' % name, glob("examples/*.py")),
46
ef768273ddba setup.py: added CHANGELOG
Goffi <goffi@goffi.org>
parents: 45
diff changeset
27 ('share/doc/%s' % name, ['COPYING','COPYING.LESSER','README', "CHANGELOG"])],
39
8cc5970039f3 distribute is now used with distutils, added urwid requirement
Goffi <goffi@goffi.org>
parents: 38
diff changeset
28 install_requires = ['urwid']
31
42cb54666fc2 Added basic setup.py
Goffi <goffi@goffi.org>
parents:
diff changeset
29 )