-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.cfg
65 lines (58 loc) · 1.48 KB
/
setup.cfg
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
[metadata]
name = pilgram
version = attr: pilgram._version.__version__
author = Akiomi Kamakura
author-email = [email protected]
description = library for instagram filters
long_description = file: README.md
long_description_content_type = text/markdown
keywords =
pillow
instagram
instagram-filters
css-filters
image-blending
blend-modes
image-processing
data-augmentation
url = https://github.com/akiomik/pilgram
license = Apache License 2.0
license_file = LICENSE
platform = any
classifiers =
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
Programming Language :: Python :: 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
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Topic :: Multimedia :: Graphics
Topic :: Software Development :: Libraries :: Python Modules
[options]
zip_safe = false
packages = find:
setup_requires =
setuptools >= 38.3.0
python_requires = !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*
[options.packages.find]
exclude =
*.tests
[options.data_files]
screenshots =
screenshots/screenshot.png
screenshots/filter-performance-comparison.png
[tool:pytest]
addopts = -v --cov=pilgram --benchmark-skip
[coverage:run]
omit =
*/tests/*
[coverage:report]
show_missing = true
[flake8]
doctests = true
max-line-length = 88
extend-ignore = E203