Added setup.py and phantom package (for PyPI)

1.2
Francisco Souza 2011-06-03 16:21:03 -03:00
parent d84e97f003
commit 7069b707ab
2 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1 @@
__version__ = '1.1.0'

15
python/setup.py Normal file
View File

@ -0,0 +1,15 @@
from setuptools import setup, find_packages
from phantom import __version__
README = open('README').read()
setup(name='phantom.py',
version=__version__,
description='Headless WebKit with Python API',
long_description=README,
author='Author name',
author_email='author-email',
packages=find_packages(),
include_package_data=True,
install_requires=['PyQt4'],
)