forked from asweigart/pyscreeze
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
62 lines (58 loc) · 2.55 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
58
59
60
61
62
import io
import os
import re
from setuptools import setup
scriptFolder = os.path.dirname(os.path.realpath(__file__))
os.chdir(scriptFolder)
# Load version from module (without loading the whole module)
with open("pyscreeze/__init__.py", "r") as fileObj:
version = re.search(
r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]', fileObj.read(), re.MULTILINE
).group(1)
# Use the README.md content for the long description:
with io.open("README.md", encoding="utf-8") as fileObj:
long_description = fileObj.read()
setup(
name="PyScreeze",
version=version,
url="https://github.com/asweigart/pyscreeze",
author="Al Sweigart",
author_email="[email protected]",
description="A simple, cross-platform screenshot module for Python 2 and 3.",
long_description=long_description,
license="MIT",
packages=["pyscreeze"],
test_suite="tests",
# NOTE: Update the python_version info for Pillow as Pillow supports later versions of Python.
install_requires=['Pillow >= 6.2.1; python_version == "3.8"',
'Pillow >= 5.2.0; python_version == "3.7"',
'Pillow >= 4.0.0; python_version == "3.6"',
'Pillow >= 3.2.0; python_version == "3.5"',
'Pillow <= 5.4.1, >= 2.5.0; python_version == "3.4"',
'Pillow <= 4.3.0, >= 2.0.0; python_version == "3.3"',
'Pillow <= 3.4.2, >= 2.0.0; python_version == "3.2"',
'Pillow >= 2.0.0; python_version == "2.7"',
],
requires_python=">=2.7, !=3.0.*, !=3.1.*", # Pillow library has never supported pre-2.7 or 3.0 or 3.1.
keywords="screenshot screen screencap capture scrot screencapture image",
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Win32 (MS Windows)",
"Environment :: X11 Applications",
"Environment :: MacOS X",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
)