-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
56 lines (44 loc) · 1.42 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='selenium-chrome-screenshot',
version='0.0.1',
url='http://github.com/sanscore/selenium-chrome-screenshot/',
description='',
long_description='',
keywords='selenium chrome screenshot',
author='Grant Welch',
author_email='gwelch925 at gmail.com',
license='Apache License 2.0',
packages=find_packages('src'),
package_dir={'': 'src'},
install_requires=[
'selenium',
'Wand',
],
setup_requires=[
],
tests_require=[
],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Session",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Libraries",
],
include_package_data=True,
zip_safe=False,
)