mirror of
https://github.com/encounter/phantomjs.git
synced 2026-03-30 11:35:11 -07:00
15 lines
381 B
Python
15 lines
381 B
Python
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,
|
|
)
|