-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
85 lines (74 loc) · 1.91 KB
/
setup.cfg
File metadata and controls
85 lines (74 loc) · 1.91 KB
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
78
79
80
81
82
83
84
85
[metadata]
# Version will be bumped by semantic release
version = 0.0.dev0
name = mezzanine-instagram-feed
description = Connect Mezzaine sites to Instagram feeds
long_description = file: README.md
long_description_content_type = text/markdown
keywords = django, mezzanine, instagram
maintainer = Unplug Studio
maintainer-email = [email protected]
author = Unplug Studio
author-email = [email protected]
url = https://github.com/unplugstudio/mezzanine-instagram-feed
project_urls =
Source=https://github.com/unplugstudio/mezzanine-instagram-feed
Tracker=https://github.com/unplugstudio/mezzanine-instagram-feed/issues
platforms = any
license = MIT
license_file = LICENSE
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Topic :: Software Development :: Libraries
Programming Language :: Python :: 2
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
[options]
packages = find:
include_package_data = true
python_requires = >=2.7
install_requires =
mezzanine >= 4
django >= 1.8
[options.extras_require]
testing =
flake8 >= 3, <4
pytest >= 4.0.0, <6
# Building
[bdist_wheel]
universal=1
# Testing
[tox:tox]
envlist =
py27
py36
py37
py38
flake8
black
[gh-actions]
python =
2.7: py27, flake8
3.6: py36
3.7: py37
3.8: py38, flake8, black
[testenv]
description = run test suite under {basepython}
extras = testing
commands = pytest {posargs:tests}
[testenv:flake8]
extras = testing
commands = flake8 instagramfeed
[testenv:black]
deps = black
commands = black instagramfeed --check --exclude (migrations)
[flake8]
max-line-length = 88
extend-ignore = E203
exclude = __pycache__,migrations