annotate setup.py @ 4:fd9d81f66ff7

final changes for 0.2.0 release
author Vlad Glagolev <enqlave@gmail.com>
date Sun, 09 Aug 2009 15:22:29 +0400
parents a754b01955c7
children 5e26e170a121
rev   line source
0
086863cd711d pycweather: initial commit
Vlad Glagolev <enqlave@gmail.com>
parents:
diff changeset
1 #!/usr/bin/env python
086863cd711d pycweather: initial commit
Vlad Glagolev <enqlave@gmail.com>
parents:
diff changeset
2 # -*- coding: utf-8 -*-
086863cd711d pycweather: initial commit
Vlad Glagolev <enqlave@gmail.com>
parents:
diff changeset
3 #
086863cd711d pycweather: initial commit
Vlad Glagolev <enqlave@gmail.com>
parents:
diff changeset
4 # This file is part of PycWeather
086863cd711d pycweather: initial commit
Vlad Glagolev <enqlave@gmail.com>
parents:
diff changeset
5 #
3
a754b01955c7 1st stage of work for final 0.2.0
Vlad Glagolev <enqlave@gmail.com>
parents: 1
diff changeset
6 # Copyright (c) 2008-2009 Vlad Glagolev <enqlave@gmail.com>
a754b01955c7 1st stage of work for final 0.2.0
Vlad Glagolev <enqlave@gmail.com>
parents: 1
diff changeset
7 # All rights reserved.
0
086863cd711d pycweather: initial commit
Vlad Glagolev <enqlave@gmail.com>
parents:
diff changeset
8 #
086863cd711d pycweather: initial commit
Vlad Glagolev <enqlave@gmail.com>
parents:
diff changeset
9 # Permission to use, copy, modify, and distribute this software for any
086863cd711d pycweather: initial commit
Vlad Glagolev <enqlave@gmail.com>
parents:
diff changeset
10 # purpose with or without fee is hereby granted, provided that the above
086863cd711d pycweather: initial commit
Vlad Glagolev <enqlave@gmail.com>
parents:
diff changeset
11 # copyright notice and this permission notice appear in all copies.
086863cd711d pycweather: initial commit
Vlad Glagolev <enqlave@gmail.com>
parents:
diff changeset
12 #
086863cd711d pycweather: initial commit
Vlad Glagolev <enqlave@gmail.com>
parents:
diff changeset
13 # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
086863cd711d pycweather: initial commit
Vlad Glagolev <enqlave@gmail.com>
parents:
diff changeset
14 # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
086863cd711d pycweather: initial commit
Vlad Glagolev <enqlave@gmail.com>
parents:
diff changeset
15 # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
086863cd711d pycweather: initial commit
Vlad Glagolev <enqlave@gmail.com>
parents:
diff changeset
16 # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
086863cd711d pycweather: initial commit
Vlad Glagolev <enqlave@gmail.com>
parents:
diff changeset
17 # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
086863cd711d pycweather: initial commit
Vlad Glagolev <enqlave@gmail.com>
parents:
diff changeset
18 # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
086863cd711d pycweather: initial commit
Vlad Glagolev <enqlave@gmail.com>
parents:
diff changeset
19 # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
086863cd711d pycweather: initial commit
Vlad Glagolev <enqlave@gmail.com>
parents:
diff changeset
20
086863cd711d pycweather: initial commit
Vlad Glagolev <enqlave@gmail.com>
parents:
diff changeset
21 """ setup.py: PycWeather setup script """
086863cd711d pycweather: initial commit
Vlad Glagolev <enqlave@gmail.com>
parents:
diff changeset
22
086863cd711d pycweather: initial commit
Vlad Glagolev <enqlave@gmail.com>
parents:
diff changeset
23 from distutils.core import setup
086863cd711d pycweather: initial commit
Vlad Glagolev <enqlave@gmail.com>
parents:
diff changeset
24
086863cd711d pycweather: initial commit
Vlad Glagolev <enqlave@gmail.com>
parents:
diff changeset
25 from pycweather import __version__
086863cd711d pycweather: initial commit
Vlad Glagolev <enqlave@gmail.com>
parents:
diff changeset
26
086863cd711d pycweather: initial commit
Vlad Glagolev <enqlave@gmail.com>
parents:
diff changeset
27 setup(
086863cd711d pycweather: initial commit
Vlad Glagolev <enqlave@gmail.com>
parents:
diff changeset
28 name = "pycweather",
086863cd711d pycweather: initial commit
Vlad Glagolev <enqlave@gmail.com>
parents:
diff changeset
29 url = "http://pycweather.enqlave.net/",
086863cd711d pycweather: initial commit
Vlad Glagolev <enqlave@gmail.com>
parents:
diff changeset
30 version = __version__,
086863cd711d pycweather: initial commit
Vlad Glagolev <enqlave@gmail.com>
parents:
diff changeset
31 download_url = "http://pycweather.enqlave.net/releases/pycweather-%s.tar.gz" % __version__,
086863cd711d pycweather: initial commit
Vlad Glagolev <enqlave@gmail.com>
parents:
diff changeset
32 author = "Vlad Glagolev",
086863cd711d pycweather: initial commit
Vlad Glagolev <enqlave@gmail.com>
parents:
diff changeset
33 author_email = "enqlave@gmail.com",
086863cd711d pycweather: initial commit
Vlad Glagolev <enqlave@gmail.com>
parents:
diff changeset
34 packages = ["pycweather"],
086863cd711d pycweather: initial commit
Vlad Glagolev <enqlave@gmail.com>
parents:
diff changeset
35 scripts = ["bin/pycweather"],
3
a754b01955c7 1st stage of work for final 0.2.0
Vlad Glagolev <enqlave@gmail.com>
parents: 1
diff changeset
36 data_files = [('share/pycweather', ["share/template.xsl"])],
0
086863cd711d pycweather: initial commit
Vlad Glagolev <enqlave@gmail.com>
parents:
diff changeset
37 description = "Weather display manager for conky",
086863cd711d pycweather: initial commit
Vlad Glagolev <enqlave@gmail.com>
parents:
diff changeset
38 platforms = ["Linux", "Unix"],
086863cd711d pycweather: initial commit
Vlad Glagolev <enqlave@gmail.com>
parents:
diff changeset
39 long_description = "PycWeather is pure-pythonic weather display manager \
086863cd711d pycweather: initial commit
Vlad Glagolev <enqlave@gmail.com>
parents:
diff changeset
40 for Conky system monitor.",
086863cd711d pycweather: initial commit
Vlad Glagolev <enqlave@gmail.com>
parents:
diff changeset
41 license = "ISC",
086863cd711d pycweather: initial commit
Vlad Glagolev <enqlave@gmail.com>
parents:
diff changeset
42 classifiers = [
086863cd711d pycweather: initial commit
Vlad Glagolev <enqlave@gmail.com>
parents:
diff changeset
43 "Topic :: Desktop Environment",
086863cd711d pycweather: initial commit
Vlad Glagolev <enqlave@gmail.com>
parents:
diff changeset
44 "Programming Language :: Python",
086863cd711d pycweather: initial commit
Vlad Glagolev <enqlave@gmail.com>
parents:
diff changeset
45 "Operating System :: POSIX",
086863cd711d pycweather: initial commit
Vlad Glagolev <enqlave@gmail.com>
parents:
diff changeset
46 "License :: OSI Approved :: ISC License",
086863cd711d pycweather: initial commit
Vlad Glagolev <enqlave@gmail.com>
parents:
diff changeset
47 "Natural Language :: English",
086863cd711d pycweather: initial commit
Vlad Glagolev <enqlave@gmail.com>
parents:
diff changeset
48 "Intended Audience :: End Users/Desktop",
086863cd711d pycweather: initial commit
Vlad Glagolev <enqlave@gmail.com>
parents:
diff changeset
49 ]
086863cd711d pycweather: initial commit
Vlad Glagolev <enqlave@gmail.com>
parents:
diff changeset
50 )