comparison setup.py @ 3:a754b01955c7

1st stage of work for final 0.2.0
author Vlad Glagolev <enqlave@gmail.com>
date Mon, 27 Jul 2009 00:02:10 +0400
parents 5c91081c6c61
children 5e26e170a121
comparison
equal deleted inserted replaced
2:bf34534a0acd 3:a754b01955c7
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # -*- coding: utf-8 -*- 2 # -*- coding: utf-8 -*-
3 # 3 #
4 # This file is part of PycWeather 4 # This file is part of PycWeather
5 # 5 #
6 # Copyright (c) 2008 Vlad Glagolev <enqlave@gmail.com>. All rights reserved. 6 # Copyright (c) 2008-2009 Vlad Glagolev <enqlave@gmail.com>
7 # All rights reserved.
7 # 8 #
8 # Permission to use, copy, modify, and distribute this software for any 9 # 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 # purpose with or without fee is hereby granted, provided that the above
10 # copyright notice and this permission notice appear in all copies. 11 # copyright notice and this permission notice appear in all copies.
11 # 12 #
30 download_url = "http://pycweather.enqlave.net/releases/pycweather-%s.tar.gz" % __version__, 31 download_url = "http://pycweather.enqlave.net/releases/pycweather-%s.tar.gz" % __version__,
31 author = "Vlad Glagolev", 32 author = "Vlad Glagolev",
32 author_email = "enqlave@gmail.com", 33 author_email = "enqlave@gmail.com",
33 packages = ["pycweather"], 34 packages = ["pycweather"],
34 scripts = ["bin/pycweather"], 35 scripts = ["bin/pycweather"],
36 data_files = [('share/pycweather', ["share/template.xsl"])],
35 description = "Weather display manager for conky", 37 description = "Weather display manager for conky",
36 platforms = ["Linux", "Unix"], 38 platforms = ["Linux", "Unix"],
37 long_description = "PycWeather is pure-pythonic weather display manager \ 39 long_description = "PycWeather is pure-pythonic weather display manager \
38 for Conky system monitor.", 40 for Conky system monitor.",
39 license = "ISC", 41 license = "ISC",