Another small update to downloader.
[PyMotherless.git] / setup.py
blob50db6bfa0197a75efa94eb340f9f23d79a16da64
1 #!/usr/bin/env python
3 '''
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the Revised BSD License.
7 This program is distributed in the hope that it will be useful,
8 but WITHOUT ANY WARRANTY; without even the implied warranty of
9 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 Revised BSD License for more details.
12 Copyright 2016 Cool Dude 2k - http://idb.berlios.de/
13 Copyright 2016 Game Maker 2k - http://intdb.sourceforge.net/
14 Copyright 2016 Kazuki Przyborowski - https://github.com/KazukiPrzyborowski
16 $FileInfo: setup.py - Last Update: 02/24/2016 Ver. 0.4.2 RC 1 - Author: cooldude2k $
17 '''
19 import re, os, sys, time, datetime, platform, pkg_resources;
20 from setuptools import setup, find_packages;
22 setup(
23 name = 'PyMotherless',
24 version = '0.4.2',
25 author = 'Kazuki Przyborowski',
26 author_email = 'kazuki.przyborowski@gmail.com',
27 maintainer = 'Kazuki Przyborowski',
28 maintainer_email = 'kazuki.przyborowski@gmail.com',
29 description = 'Get urls of images/videos from motherless.',
30 license = 'Revised BSD License',
31 keywords = 'motherless pymotherless python python-motherless',
32 url = 'https://github.com/GameMaker2k/PyMotherless',
33 download_url = 'https://github.com/GameMaker2k/PyMotherless/archive/master.tar.gz',
34 long_description = 'Get urls of images/videos from motherless.',
35 platforms = 'OS Independent',
36 zip_safe = True,
37 py_modules = ['pymotherless'],
38 classifiers = [
39 'Development Status :: 5 - Production/Stable',
40 'Intended Audience :: Developers',
41 'Intended Audience :: Other Audience',
42 'License :: OSI Approved',
43 'License :: OSI Approved :: BSD License',
44 'Natural Language :: English',
45 'Operating System :: MacOS',
46 'Operating System :: MacOS :: MacOS X',
47 'Operating System :: Microsoft',
48 'Operating System :: Microsoft :: Windows',
49 'Operating System :: OS/2',
50 'Operating System :: OS Independent',
51 'Operating System :: POSIX',
52 'Operating System :: Unix',
53 'Programming Language :: Python',
54 'Topic :: Utilities',
55 'Topic :: Software Development',
56 'Topic :: Software Development :: Libraries',
57 'Topic :: Software Development :: Libraries :: Python Modules',