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