forked from chhantyal/py3readiness
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflags.py
20 lines (19 loc) · 973 Bytes
/
flags.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
"""
It contains all the projects that can be ignored in graph. For example, there are many Mozilla
libs with large download stat which are not really used by community. See issue #22
"""
FLAGS = {
"rackspace-novaclient":"https://github.com/rackerlabs/rackspace-novaclient",
"mozrunner":"https://pypi.python.org/pypi/mozrunner",
"moznetwork":"https://pypi.python.org/pypi/moznetwork",
"mozdevice": "https://pypi.python.org/pypi/mozdevice",
"mozprofile": "https://pypi.python.org/pypi/mozprofile",
"mozprocess": "https://pypi.python.org/pypi/mozprocess",
"mozfile": "https://pypi.python.org/pypi/mozfile",
"mozinfo": "https://pypi.python.org/pypi/mozinfo",
"mozlog": "https://pypi.python.org/pypi/mozlog",
"mozcrash": "https://pypi.python.org/pypi/mozcrash",
"mozhttpd": "https://pypi.python.org/pypi/mozhttpd",
"moztest": "https://pypi.python.org/pypi/moztest",
"mozversion": "https://pypi.python.org/pypi/mozversion",
}