Version 1.0.1
[python-thefuckingweather.git] / setup.py
blob624fb4ac0b5d9f97e44e61cf98a82c80033e491e
1 from distutils.core import setup
2 import thefuckingweather
4 setup(name="thefuckingweather",
5 version="1.0.1",
6 description="Python API for The Fucking Weather",
7 author="Ian Weller",
8 author_email="ian@ianweller.org",
9 url="http://repo.or.cz/w/python-thefuckingweather.git",
10 py_modules=["thefuckingweather"],
11 license="""\
12 DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
13 Version 2, December 2004
15 Copyright (C) 2004 Sam Hocevar
16 14 rue de Plaisance, 75014 Paris, France
17 Everyone is permitted to copy and distribute verbatim or modified
18 copies of this license document, and changing it is allowed as long
19 as the name is changed.
21 DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
22 TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
24 0. You just DO WHAT THE FUCK YOU WANT TO.
26 """,
27 classifiers=[
28 "Development Status :: 5 - Production/Stable",
29 "Environment :: Console",
30 "Intended Audience :: Developers",
31 "Intended Audience :: End Users/Desktop",
32 "License :: Freely Distributable",
33 "Operating System :: OS Independent",
34 "Topic :: Utilities",