-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
77 lines (64 loc) · 2.15 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# !/usr/bin/env python
import os
import sys
from setuptools import setup, find_packages
version = "0.0.14"
if sys.argv[-1] == "publish":
try:
import wheel
print("Wheel version: ", wheel.__version__)
except ImportError:
print('Wheel library missing. Please run "pip install wheel"')
sys.exit()
os.system("rm -rf dist/")
os.system("python setup.py sdist bdist_wheel")
os.system("twine upload dist/*")
sys.exit()
if sys.argv[1] == "bumpversion":
print("bumpversion")
try:
part = sys.argv[2]
except IndexError:
part = "patch"
os.system("bump2version --config-file setup.cfg %s" % part)
sys.exit()
__doc__ = ""
project_name = "pytest-image-diff"
app_name = "pytest_image_diff"
ROOT = os.path.dirname(__file__)
def read(fname):
return open(os.path.join(ROOT, fname)).read()
setup(
name=project_name,
version=version,
description=__doc__,
long_description=read("README.md"),
long_description_content_type="text/markdown",
url="https://github.com/Apkawa/%s" % project_name,
author="Apkawa",
author_email="apkawa@gmail.com",
packages=[package for package in find_packages() if package.startswith(app_name)],
python_requires=">=3.6, <4",
entry_points={"pytest11": ["image_diff = pytest_image_diff.plugin"]},
install_requires=["pytest", "typing_extensions", "diffimg", "imgdiff"],
extras_require={"splinter": ["pytest-splinter>=2.1.0"]},
zip_safe=False,
include_package_data=True,
keywords=["pytest"],
license="MIT",
classifiers=[
"Development Status :: 3 - Alpha",
"Framework :: Pytest",
"Intended Audience :: Developers",
"Environment :: Web Environment",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
],
)