Files

76 lines
2.4 KiB
Python
Raw Permalink Normal View History

2011-06-06 23:59:07 -03:00
'''
This file is part of the PyPhantomJS project.
Copyright (C) 2011 James Roe <roejames12@hotmail.com>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
2011-09-23 04:40:56 -07:00
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2011-06-06 23:59:07 -03:00
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
2011-09-23 04:40:56 -07:00
along with this program. If not, see <http://www.gnu.org/licenses/>.
2011-06-06 23:59:07 -03:00
'''
import os
from setuptools import setup, find_packages
from pyphantomjs import __version__
2011-06-06 22:38:41 -07:00
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
2011-06-06 22:38:41 -07:00
2011-06-06 23:27:23 -03:00
README = read('README.md')
INSTALL = read('INSTALL.md')
2011-06-05 20:07:30 -03:00
index = README.find('LICENSING')
if index > -1:
README = README[:index] + INSTALL + '\n\n' + README[index:]
else:
README += INSTALL
mainWarningPrinted = False
mainWarning = ('\nWARNING: PyPhantomJS requires additional libraries, which were not found!\n'
' Refer to the README or INSTALL file for installation information.\n')
for module in ('PyQt4', 'PIL'):
try:
__import__(module)
except ImportError:
if not mainWarningPrinted:
print mainWarning
mainWarningPrinted = True
print "* '%s' library not found" % module
2011-06-05 20:07:30 -03:00
2011-06-06 22:38:41 -07:00
setup(
name='PyPhantomJS',
version=__version__,
description='Minimalistic, headless, WebKit-based, JavaScript-driven tool',
long_description=README,
2011-07-03 00:05:57 -07:00
url = 'https://github.com/Roejames12/phantomjs',
license = 'GNU General Public License (GPL)',
2011-06-06 22:38:41 -07:00
author='James Roe',
author_email='roejames12@hotmail.com',
packages=find_packages(),
include_package_data=True,
install_requires=['argparse'],
2011-12-11 09:39:54 -08:00
scripts = ['scripts/pyphantomjs'],
2011-06-06 22:38:41 -07:00
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Browsers'
],
zip_safe=False
2011-06-06 22:38:41 -07:00
)