This repository has been archived by the owner on Feb 8, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
executable file
·57 lines (53 loc) · 1.53 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
56
57
#!/usr/bin/env python3
import os
import sys
from setuptools import setup
setup(
name="pytestshot",
version="0.2",
description=(
"Automated tests for Python/GTK using screenshots and image processing"
),
long_description=(
"Automated tests for Python/GTK using screenshots and image processing"
),
keywords="tests",
url="https://github.com/jflesch/pytestshot#readme",
download_url=(
"https://github.com/jflesch/pytestshot/archive/master.tar.gz"
),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: End Users/Desktop",
("License :: OSI Approved ::"
" GNU General Public License v3 or later (GPLv3+)"),
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Topic :: Multimedia :: Graphics :: Graphics Conversion",
"Topic :: Scientific/Engineering :: Image Recognition",
],
license="GPLv3+",
author="Jerome Flesch",
author_email="[email protected]",
packages=[
'pytestshot',
'pytestshot_compare',
],
package_dir={
'pytestshot': 'src/pytestshot',
'pytestshot_compare': 'src/pytestshot_compare',
},
scripts=['scripts/pytestshot-compare'],
data_files=[
(
os.path.join(sys.prefix, 'share/pytestshot'),
[
'src/pytestshot_compare/pytestshot-compare.glade',
],
)
],
install_requires=[
"Pillow",
"pypillowfight",
],
)