forked from facebookarchive/huxley
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (27 loc) · 824 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
from setuptools import setup, find_packages
import os
DIRNAME = os.path.dirname(os.path.abspath(__file__))
execfile(os.path.join(DIRNAME, 'huxley', 'version.py'))
setup(
name = 'Huxley',
version = __version__,
packages = find_packages(),
install_requires = [
'selenium==2.35.0',
'plac==0.9.1',
'Pillow==2.2.1',
'jsonpickle==0.4.0'
],
package_data={'': ['requirements.txt']},
entry_points = {
'console_scripts': [
'huxley=huxley.cmdline:main'
]
},
author = 'Pete Hunt',
author_email = '[email protected]',
description = 'Watches you browse, takes screenshots, tells you when they change.',
license = 'Apache 2',
keywords = 'selenium testing facebook instagram',
url = 'http://github.com/facebook/huxley',
)