-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproject.prop
42 lines (42 loc) · 1.12 KB
/
project.prop
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
# This file contains a single dictionary definition containing all of the
# project-specific customization options supported by this template. It is
# parsed by the setup.py at build time.
{
"NAME" : "friendlypins",
"REPO" : "friendlypins",
"DEPENDENCIES" : [
"requests",
"six",
"dateutils",
"tqdm",
"pillow",
"humanize"
],
"DEV_DEPENDENCIES" : [
"pytest",
"pytest-cov",
"pytest-recording",
"pytest-json-report",
"mock",
"pylint",
"sphinx",
"sphinxcontrib-apidoc",
"sphinx-rtd-theme",
"tox",
"tox-factor",
"tox-pyenv",
"Click",
"colorama",
# pinning coverage package until bugs with coveralls plugin is fixed
# https://github.com/z4r/python-coveralls/issues/73
"coverage<5.0",
"python-coveralls",
"pyyaml",
"wheel",
"twine"
],
"DESCRIPTION" : "Python wrapper around the Pinterest developer APIs",
"KEYWORDS" : "pinterest api wrapper library",
"SUPPORTED_PYTHON_VERSION" :
">=3.5.0, <4",
}