comparison setup.py @ 0:086863cd711d

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