|
0
|
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 description = "Weather display manager for conky", |
|
|
36 platforms = ["Linux", "Unix"], |
|
|
37 long_description = "PycWeather is pure-pythonic weather display manager \ |
|
|
38 for Conky system monitor.", |
|
|
39 license = "ISC", |
|
|
40 classifiers = [ |
|
|
41 "Topic :: Desktop Environment", |
|
|
42 "Programming Language :: Python", |
|
|
43 "Operating System :: POSIX", |
|
|
44 "License :: OSI Approved :: ISC License", |
|
|
45 "Natural Language :: English", |
|
|
46 "Intended Audience :: End Users/Desktop", |
|
|
47 ] |
|
|
48 ) |